diff options
| author | Nico Weber <nicolasweber@gmx.de> | 2018-04-04 12:27:43 +0000 | 
|---|---|---|
| committer | Nico Weber <nicolasweber@gmx.de> | 2018-04-04 12:27:43 +0000 | 
| commit | 644d456a5f8fb6cc4547c8f5cbe7e7fbbf740a10 (patch) | |
| tree | 5fa3e7ebfd3c9503fc24b401704b0b76c3bbfa31 /llvm/lib | |
| parent | 804997ab280e8aa012f5a339428a78e370a3c363 (diff) | |
| download | bcm5719-llvm-644d456a5f8fb6cc4547c8f5cbe7e7fbbf740a10.tar.gz bcm5719-llvm-644d456a5f8fb6cc4547c8f5cbe7e7fbbf740a10.zip | |
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
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/AVR/CMakeLists.txt | 8 | 
1 files changed, 2 insertions, 6 deletions
| diff --git a/llvm/lib/Target/AVR/CMakeLists.txt b/llvm/lib/Target/AVR/CMakeLists.txt index af89a2476c4..40ce548bff2 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 | 

