[AVR] Enable generation of the TableGen assembly writer tables
authorDylan McKay <dylanmckay34@gmail.com>
Mon, 10 Oct 2016 01:28:45 +0000 (01:28 +0000)
committerDylan McKay <dylanmckay34@gmail.com>
Mon, 10 Oct 2016 01:28:45 +0000 (01:28 +0000)
This also changes the order of the statements in CMakeLists.txt to be
alphabetical.

llvm-svn: 283711

llvm/lib/Target/AVR/CMakeLists.txt

index 449294f..50c56f5 100644 (file)
@@ -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)