forked from OSchip/llvm-project
Removing an unused variable introduced in r269911; NFC.
llvm-svn: 269915
This commit is contained in:
parent
3ca1622a90
commit
54269226ba
|
@ -252,7 +252,6 @@ StringRef sys::getHostCPUName() {
|
|||
GetX86CpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
|
||||
bool Em64T = (EDX >> 29) & 0x1;
|
||||
bool HasTBM = (ECX >> 21) & 0x1;
|
||||
bool HasMWAITX = (ECX >> 29) & 0x1;
|
||||
|
||||
if (memcmp(text.c, "GenuineIntel", 12) == 0) {
|
||||
switch (Family) {
|
||||
|
|
Loading…
Reference in New Issue