From 644d456a5f8fb6cc4547c8f5cbe7e7fbbf740a10 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 4 Apr 2018 12:27:43 +0000 Subject: [PATCH] Remove duplicate tablegen lines from AVR target. They were added in r285274, in what looks like a merge mishap. AVRGenMCCodeEmitter.inc is the only non-dupe tablegen invocation added in that revision. Also sort the tablegen lines to make this easier to spot in the future. llvm-svn: 329178 --- llvm/lib/Target/AVR/CMakeLists.txt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/llvm/lib/Target/AVR/CMakeLists.txt b/llvm/lib/Target/AVR/CMakeLists.txt index af89a2476c4c..40ce548bff2c 100644 --- a/llvm/lib/Target/AVR/CMakeLists.txt +++ b/llvm/lib/Target/AVR/CMakeLists.txt @@ -1,19 +1,15 @@ 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) tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info) +tablegen(LLVM AVRGenMCCodeEmitter.inc -gen-emitter) tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info) tablegen(LLVM AVRGenSubtargetInfo.inc -gen-subtarget) + add_public_tablegen_target(AVRCommonTableGen) add_llvm_target(AVRCodeGen