[llvm] r304324 - [BPF] Correct the file name of the -gen-asm-matcher output file to not start with X86.

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Wed May 31 12:01:05 PDT 2017


Author: ctopper
Date: Wed May 31 14:01:05 2017
New Revision: 304324

URL: http://llvm.org/viewvc/llvm-project?rev=304324&view=rev
Log:
[BPF] Correct the file name of the -gen-asm-matcher output file to not start with X86.

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

Modified: llvm/trunk/lib/Target/BPF/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/BPF/CMakeLists.txt?rev=304324&r1=304323&r2=304324&view=diff
==============================================================================
--- llvm/trunk/lib/Target/BPF/CMakeLists.txt (original)
+++ llvm/trunk/lib/Target/BPF/CMakeLists.txt Wed May 31 14:01:05 2017
@@ -4,7 +4,7 @@ tablegen(LLVM BPFGenRegisterInfo.inc -ge
 tablegen(LLVM BPFGenInstrInfo.inc -gen-instr-info)
 tablegen(LLVM BPFGenDisassemblerTables.inc -gen-disassembler)
 tablegen(LLVM BPFGenAsmWriter.inc -gen-asm-writer)
-tablegen(LLVM X86GenAsmMatcher.inc -gen-asm-matcher)
+tablegen(LLVM BPFGenAsmMatcher.inc -gen-asm-matcher)
 tablegen(LLVM BPFGenDAGISel.inc -gen-dag-isel)
 tablegen(LLVM BPFGenMCCodeEmitter.inc -gen-emitter)
 tablegen(LLVM BPFGenCallingConv.inc -gen-callingconv)




More information about the llvm-commits mailing list