[llvm] r285274 - [AVR] Generate all of the TableGen files we need
Dylan McKay via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 27 01:20:48 PDT 2016
Author: dylanmckay
Date: Thu Oct 27 03:20:47 2016
New Revision: 285274
URL: http://llvm.org/viewvc/llvm-project?rev=285274&view=rev
Log:
[AVR] Generate all of the TableGen files we need
This enables generation of all of the TableGen files that are used
downstream.
Modified:
llvm/trunk/lib/Target/AVR/CMakeLists.txt
Modified: llvm/trunk/lib/Target/AVR/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AVR/CMakeLists.txt?rev=285274&r1=285273&r2=285274&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AVR/CMakeLists.txt (original)
+++ llvm/trunk/lib/Target/AVR/CMakeLists.txt Thu Oct 27 03:20:47 2016
@@ -1,7 +1,13 @@
set(LLVM_TARGET_DEFINITIONS AVR.td)
tablegen(LLVM AVRGenAsmMatcher.inc -gen-asm-matcher)
+tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info)
+tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info)
+tablegen(LLVM AVRGenDisassemblerTables.inc -gen-disassembler)
+tablegen(LLVM AVRGenMCCodeEmitter.inc -gen-emitter)
tablegen(LLVM AVRGenAsmWriter.inc -gen-asm-writer)
+tablegen(LLVM AVRGenAsmMatcher.inc -gen-asm-matcher)
+tablegen(LLVM AVRGenDAGISel.inc -gen-dag-isel)
tablegen(LLVM AVRGenCallingConv.inc -gen-callingconv)
tablegen(LLVM AVRGenDAGISel.inc -gen-dag-isel)
tablegen(LLVM AVRGenDisassemblerTables.inc -gen-disassembler)
@@ -29,4 +35,3 @@ add_subdirectory(Disassembler)
add_subdirectory(InstPrinter)
add_subdirectory(MCTargetDesc)
add_subdirectory(TargetInfo)
-
More information about the llvm-commits
mailing list