diff options
author | Nico Weber <nicolasweber@gmx.de> | 2018-04-04 12:37:44 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2018-04-04 12:37:44 +0000 |
commit | 1cbd0969143e1e7c016fcfda5866a598e5e4b765 (patch) | |
tree | d36c95cd33587ad51f6aec0133d839c5fe4a2b6e /llvm/lib/Target/Sparc | |
parent | 55d717805ba4731f1b09d09d9d9fd53527c60add (diff) | |
download | bcm5719-llvm-1cbd0969143e1e7c016fcfda5866a598e5e4b765.tar.gz bcm5719-llvm-1cbd0969143e1e7c016fcfda5866a598e5e4b765.zip |
Sort targetgen calls in lib/Target/*/CMakeLists.
Makes it easier to see mistakes such as the one fixed in r329178 and makes
the different target CMakeLists more consistent.
Also remove some stale-looking comments from the Nios2 target cmakefile.
No intended behavior change.
llvm-svn: 329181
Diffstat (limited to 'llvm/lib/Target/Sparc')
-rw-r--r-- | llvm/lib/Target/Sparc/CMakeLists.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/llvm/lib/Target/Sparc/CMakeLists.txt b/llvm/lib/Target/Sparc/CMakeLists.txt index 312215cf6cd..7894ee6c286 100644 --- a/llvm/lib/Target/Sparc/CMakeLists.txt +++ b/llvm/lib/Target/Sparc/CMakeLists.txt @@ -1,14 +1,15 @@ set(LLVM_TARGET_DEFINITIONS Sparc.td) -tablegen(LLVM SparcGenRegisterInfo.inc -gen-register-info) -tablegen(LLVM SparcGenInstrInfo.inc -gen-instr-info) -tablegen(LLVM SparcGenDisassemblerTables.inc -gen-disassembler) -tablegen(LLVM SparcGenMCCodeEmitter.inc -gen-emitter) -tablegen(LLVM SparcGenAsmWriter.inc -gen-asm-writer) tablegen(LLVM SparcGenAsmMatcher.inc -gen-asm-matcher) +tablegen(LLVM SparcGenAsmWriter.inc -gen-asm-writer) +tablegen(LLVM SparcGenCallingConv.inc -gen-callingconv) tablegen(LLVM SparcGenDAGISel.inc -gen-dag-isel) +tablegen(LLVM SparcGenDisassemblerTables.inc -gen-disassembler) +tablegen(LLVM SparcGenInstrInfo.inc -gen-instr-info) +tablegen(LLVM SparcGenMCCodeEmitter.inc -gen-emitter) +tablegen(LLVM SparcGenRegisterInfo.inc -gen-register-info) tablegen(LLVM SparcGenSubtargetInfo.inc -gen-subtarget) -tablegen(LLVM SparcGenCallingConv.inc -gen-callingconv) + add_public_tablegen_target(SparcCommonTableGen) add_llvm_target(SparcCodeGen |