forked from OSchip/llvm-project
Basic: whitespace fixup for ARM target info
Fix whitespace. NFC. llvm-svn: 217955
This commit is contained in:
parent
839b8a62d9
commit
820e927d6f
|
@ -3972,9 +3972,8 @@ public:
|
|||
|
||||
StringRef CPUArch = getCPUDefineSuffix(CPU);
|
||||
unsigned int CPUArchVer;
|
||||
if(CPUArch.substr(0, 1).getAsInteger<unsigned int>(10, CPUArchVer)) {
|
||||
if (CPUArch.substr(0, 1).getAsInteger<unsigned int>(10, CPUArchVer))
|
||||
llvm_unreachable("Invalid char for architecture version number");
|
||||
}
|
||||
Builder.defineMacro("__ARM_ARCH_" + CPUArch + "__");
|
||||
|
||||
// ACLE 6.4.1 ARM/Thumb instruction set architecture
|
||||
|
|
Loading…
Reference in New Issue