mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
gcc 4.2 does not support xgetbv
This commit is contained in:
parent
82c2ea58c0
commit
0f7dea2f31
1 changed files with 3 additions and 1 deletions
|
@ -72,10 +72,12 @@ public:
|
|||
{
|
||||
#ifdef _MSC_VER
|
||||
return __xgetbv(0);
|
||||
#else
|
||||
#elif __GNUC_PREREQ(4, 3)
|
||||
unsigned int eax, edx;
|
||||
__asm__ volatile("xgetbv" : "=a"(eax), "=d"(edx) : "c"(0));
|
||||
return ((uint64)edx << 32) | eax;
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
enum Type {
|
||||
|
|
Loading…
Reference in a new issue