mirror of
https://github.com/intel/llvm.git
synced 2026-02-06 23:31:50 +08:00
[X86] Fix the parameter order in the default implementation of X86_VENDOR macro in X86TargetParser.def
The default implementation doesn't do anything so the order doesn't matter, but good for cleanliness. llvm-svn: 318226
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
// NOTE: NO INCLUDE GUARD DESIRED!
|
||||
|
||||
#ifndef X86_VENDOR
|
||||
#define X86_VENDOR(STRING, ENUM)
|
||||
#define X86_VENDOR(ENUM, STR)
|
||||
#endif
|
||||
X86_VENDOR(VENDOR_INTEL, "intel")
|
||||
X86_VENDOR(VENDOR_AMD, "amd")
|
||||
|
||||
Reference in New Issue
Block a user