From: Daniel Sanders Date: Wed, 2 Oct 2019 23:38:06 +0000 (+0000) Subject: [gicombiner] Fix windows issue where single quotes in the command are passed through... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=672abbceff6f4724d0367fb5f5be076620d40513;p=llvm [gicombiner] Fix windows issue where single quotes in the command are passed through to tablegen git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@373545 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/AArch64/CMakeLists.txt b/lib/Target/AArch64/CMakeLists.txt index 8473ddfca4c..103925d45d5 100644 --- a/lib/Target/AArch64/CMakeLists.txt +++ b/lib/Target/AArch64/CMakeLists.txt @@ -9,7 +9,7 @@ tablegen(LLVM AArch64GenDisassemblerTables.inc -gen-disassembler) 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)