We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88c6773 commit 1a9f4b3Copy full SHA for 1a9f4b3
llvm/lib/Support/Host.cpp
@@ -509,11 +509,11 @@ VendorSignatures getVendorSignature(unsigned *MaxLeaf) {
509
return VendorSignatures::UNKNOWN;
510
511
// "Genu ineI ntel"
512
- if (EBX == 0x756e6547 && ECX == 0x6c65746e && EDX == 0x49656e69)
+ if (EBX == 0x756e6547 && EDX == 0x49656e69 && ECX == 0x6c65746e)
513
return VendorSignatures::GENUINE_INTEL;
514
515
// "Auth enti cAMD"
516
- if (EBX == 0x68747541 && ECX == 0x69746e65 && EDX == 0x444d4163)
+ if (EBX == 0x68747541 && EDX == 0x69746e65 && ECX == 0x444d4163)
517
return VendorSignatures::AUTHENTIC_AMD;
518
519
0 commit comments