[llvm] r265720 - [AArch64] gcc does not like litteral without quotes even on preprocessor macros.

Quentin Colombet via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 7 13:49:15 PDT 2016


Author: qcolombet
Date: Thu Apr  7 15:49:15 2016
New Revision: 265720

URL: http://llvm.org/viewvc/llvm-project?rev=265720&view=rev
Log:
[AArch64] gcc does not like litteral without quotes even on preprocessor macros.

Modified:
    llvm/trunk/lib/Target/AArch64/AArch64CallLowering.cpp

Modified: llvm/trunk/lib/Target/AArch64/AArch64CallLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64CallLowering.cpp?rev=265720&r1=265719&r2=265720&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64CallLowering.cpp (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64CallLowering.cpp Thu Apr  7 15:49:15 2016
@@ -22,7 +22,7 @@
 using namespace llvm;
 
 #ifndef LLVM_BUILD_GLOBAL_ISEL
-#error This shouldn't be built without GISel
+#error "This shouldn't be built without GISel"
 #endif
 
 AArch64CallLowering::AArch64CallLowering(const AArch64TargetLowering &TLI)




More information about the llvm-commits mailing list