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/ARC | |
| 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/ARC')
| -rw-r--r-- | llvm/lib/Target/ARC/CMakeLists.txt | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/Target/ARC/CMakeLists.txt b/llvm/lib/Target/ARC/CMakeLists.txt index b862a5e61e0..8620ec2923b 100644 --- a/llvm/lib/Target/ARC/CMakeLists.txt +++ b/llvm/lib/Target/ARC/CMakeLists.txt @@ -1,12 +1,13 @@  set(LLVM_TARGET_DEFINITIONS ARC.td) -tablegen(LLVM ARCGenRegisterInfo.inc -gen-register-info) -tablegen(LLVM ARCGenInstrInfo.inc -gen-instr-info) -tablegen(LLVM ARCGenDisassemblerTables.inc -gen-disassembler)  tablegen(LLVM ARCGenAsmWriter.inc -gen-asm-writer) -tablegen(LLVM ARCGenDAGISel.inc -gen-dag-isel)  tablegen(LLVM ARCGenCallingConv.inc -gen-callingconv) +tablegen(LLVM ARCGenDAGISel.inc -gen-dag-isel) +tablegen(LLVM ARCGenDisassemblerTables.inc -gen-disassembler) +tablegen(LLVM ARCGenInstrInfo.inc -gen-instr-info) +tablegen(LLVM ARCGenRegisterInfo.inc -gen-register-info)  tablegen(LLVM ARCGenSubtargetInfo.inc -gen-subtarget) +  add_public_tablegen_target(ARCCommonTableGen)  add_llvm_target(ARCCodeGen  | 

