mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fix a variable name in MSVC specific part of rr233487.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233488 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
87f3799e56
commit
f46232d70d
@ -191,8 +191,8 @@ static bool GetX86XCR0(unsigned *rEAX, unsigned *rEDX) {
|
||||
return false;
|
||||
#elif defined(_MSC_FULL_VER) && defined(_XCR_XFEATURE_ENABLED_MASK)
|
||||
unsigned long long Result = _xgetbv(_XCR_XFEATURE_ENABLED_MASK);
|
||||
*rEAX = Value;
|
||||
*rEDX = Value >> 32;
|
||||
*rEAX = Result;
|
||||
*rEDX = Result >> 32;
|
||||
return false;
|
||||
#else
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user