From 6e73ba0d75e60725d365cb2c0bae5146d4bac661 Mon Sep 17 00:00:00 2001 From: Kim Walisch Date: Wed, 19 Jun 2024 16:45:37 +0200 Subject: [PATCH] Revert --- include/cpu_supports_avx512_bmi2.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cpu_supports_avx512_bmi2.hpp b/include/cpu_supports_avx512_bmi2.hpp index d650b30c..afc0aad4 100644 --- a/include/cpu_supports_avx512_bmi2.hpp +++ b/include/cpu_supports_avx512_bmi2.hpp @@ -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;