forked from OSchip/llvm-project
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
This commit is contained in:
parent
804997ab28
commit
644d456a5f
|
@ -1,19 +1,15 @@
|
||||||
set(LLVM_TARGET_DEFINITIONS AVR.td)
|
set(LLVM_TARGET_DEFINITIONS AVR.td)
|
||||||
|
|
||||||
tablegen(LLVM AVRGenAsmMatcher.inc -gen-asm-matcher)
|
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 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 AVRGenCallingConv.inc -gen-callingconv)
|
||||||
tablegen(LLVM AVRGenDAGISel.inc -gen-dag-isel)
|
tablegen(LLVM AVRGenDAGISel.inc -gen-dag-isel)
|
||||||
tablegen(LLVM AVRGenDisassemblerTables.inc -gen-disassembler)
|
tablegen(LLVM AVRGenDisassemblerTables.inc -gen-disassembler)
|
||||||
tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info)
|
tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info)
|
||||||
|
tablegen(LLVM AVRGenMCCodeEmitter.inc -gen-emitter)
|
||||||
tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info)
|
tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info)
|
||||||
tablegen(LLVM AVRGenSubtargetInfo.inc -gen-subtarget)
|
tablegen(LLVM AVRGenSubtargetInfo.inc -gen-subtarget)
|
||||||
|
|
||||||
add_public_tablegen_target(AVRCommonTableGen)
|
add_public_tablegen_target(AVRCommonTableGen)
|
||||||
|
|
||||||
add_llvm_target(AVRCodeGen
|
add_llvm_target(AVRCodeGen
|
||||||
|
|
Loading…
Reference in New Issue