[llvm] r283711 - [AVR] Enable generation of the TableGen assembly writer tables

Dylan McKay via llvm-commits llvm-commits at lists.llvm.org
Sun Oct 9 18:28:45 PDT 2016


Author: dylanmckay
Date: Sun Oct  9 20:28:45 2016
New Revision: 283711

URL: http://llvm.org/viewvc/llvm-project?rev=283711&view=rev
Log:
[AVR] Enable generation of the TableGen assembly writer tables

This also changes the order of the statements in CMakeLists.txt to be
alphabetical.

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=283711&r1=283710&r2=283711&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AVR/CMakeLists.txt (original)
+++ llvm/trunk/lib/Target/AVR/CMakeLists.txt Sun Oct  9 20:28:45 2016
@@ -1,9 +1,10 @@
 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 AVRGenAsmWriter.inc -gen-asm-writer)
 tablegen(LLVM AVRGenCallingConv.inc -gen-callingconv)
+tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info)
+tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info)
 tablegen(LLVM AVRGenSubtargetInfo.inc -gen-subtarget)
 add_public_tablegen_target(AVRCommonTableGen)
 




More information about the llvm-commits mailing list