summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan McKay <dylanmckay34@gmail.com>2016-10-10 01:28:45 +0000
committerDylan McKay <dylanmckay34@gmail.com>2016-10-10 01:28:45 +0000
commit1a523767dc01ea5e1a562d51fba78a85e377542b (patch)
treecc9950b840fc0501ad32059017b33d4660d491b6
parent11c48475c4cb33d78c72f24523eec6d4be5aac8e (diff)
downloadbcm5719-llvm-1a523767dc01ea5e1a562d51fba78a85e377542b.tar.gz
bcm5719-llvm-1a523767dc01ea5e1a562d51fba78a85e377542b.zip
[AVR] Enable generation of the TableGen assembly writer tables
This also changes the order of the statements in CMakeLists.txt to be alphabetical. llvm-svn: 283711
-rw-r--r--llvm/lib/Target/AVR/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Target/AVR/CMakeLists.txt b/llvm/lib/Target/AVR/CMakeLists.txt
index 449294f27ac..50c56f54807 100644
--- a/llvm/lib/Target/AVR/CMakeLists.txt
+++ b/llvm/lib/Target/AVR/CMakeLists.txt
@@ -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)
OpenPOWER on IntegriCloud