[llvm] r373545 - [gicombiner] Fix windows issue where single quotes in the command are passed through to tablegen

Daniel Sanders via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 2 16:38:06 PDT 2019


Author: dsanders
Date: Wed Oct  2 16:38:06 2019
New Revision: 373545

URL: http://llvm.org/viewvc/llvm-project?rev=373545&view=rev
Log:
[gicombiner] Fix windows issue where single quotes in the command are passed through to tablegen

Modified:
    llvm/trunk/lib/Target/AArch64/CMakeLists.txt

Modified: llvm/trunk/lib/Target/AArch64/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/CMakeLists.txt?rev=373545&r1=373544&r2=373545&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/CMakeLists.txt (original)
+++ llvm/trunk/lib/Target/AArch64/CMakeLists.txt Wed Oct  2 16:38:06 2019
@@ -9,7 +9,7 @@ tablegen(LLVM AArch64GenDisassemblerTabl
 tablegen(LLVM AArch64GenFastISel.inc -gen-fast-isel)
 tablegen(LLVM AArch64GenGlobalISel.inc -gen-global-isel)
 tablegen(LLVM AArch64GenGICombiner.inc -gen-global-isel-combiner
-              -combiners='AArch64PreLegalizerCombinerHelper')
+              -combiners="AArch64PreLegalizerCombinerHelper")
 tablegen(LLVM AArch64GenInstrInfo.inc -gen-instr-info)
 tablegen(LLVM AArch64GenMCCodeEmitter.inc -gen-emitter)
 tablegen(LLVM AArch64GenMCPseudoLowering.inc -gen-pseudo-lowering)




More information about the llvm-commits mailing list