Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Jun 19, 2024
1 parent 588b68f commit 6e73ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cpu_supports_avx512_bmi2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ inline int get_xcr0()
#if defined(_MSC_VER)
xcr0 = (int) _xgetbv(0);
#else
__asm__ __volatile__ ("xgetbv" : "=a" (xcr0) : "c" (0) : "%edx" );
__asm__ ("xgetbv" : "=a" (xcr0) : "c" (0) : "%edx" );
#endif

return xcr0;
Expand Down

0 comments on commit 6e73ba0

Please sign in to comment.