[CMake] Reorder deps and reformat
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 23 Apr 2023 02:07:22 +0000 (11:07 +0900)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 23 Apr 2023 02:29:44 +0000 (11:29 +0900)
llvm/lib/Target/ARC/Disassembler/CMakeLists.txt
llvm/lib/Target/CSKY/MCTargetDesc/CMakeLists.txt
llvm/lib/Target/M68k/AsmParser/CMakeLists.txt
llvm/unittests/Target/DirectX/CMakeLists.txt
llvm/utils/TableGen/GlobalISel/CMakeLists.txt

index 4cdeca5..3e68a42 100644 (file)
@@ -2,9 +2,9 @@ add_llvm_component_library(LLVMARCDisassembler
   ARCDisassembler.cpp
 
   LINK_COMPONENTS
+  ARCInfo
   MCDisassembler
   Support
-  ARCInfo
 
   ADD_TO_COMPONENT
   ARC
index a05f0ba..da134c4 100644 (file)
@@ -17,4 +17,4 @@ add_llvm_component_library(LLVMCSKYDesc
 
   ADD_TO_COMPONENT
   CSKY
-)
+  )
index f4bbd39..a213dab 100644 (file)
@@ -2,12 +2,12 @@ add_llvm_component_library(LLVMM68kAsmParser
   M68kAsmParser.cpp
 
   LINK_COMPONENTS
+  M68kCodeGen
+  M68kInfo
   MC
   MCParser
   Support
-  M68kCodeGen
-  M68kInfo
 
   ADD_TO_COMPONENT
   M68k
-)
+  )
index dd3dc5c..0fe608b 100644 (file)
@@ -8,7 +8,7 @@ set(LLVM_LINK_COMPONENTS
   Core
   DirectXCodeGen
   Support
-)
+  )
 
 add_llvm_target_unittest(DirectXTests
   CBufferDataLayoutTests.cpp
index d6b7a52..bce0ffc 100644 (file)
@@ -4,15 +4,15 @@ set(LLVM_LINK_COMPONENTS
   )
 
 add_llvm_library(LLVMTableGenGlobalISel STATIC DISABLE_LLVM_LINK_LLVM_DYLIB
-                 CodeExpander.cpp
-                 GIMatchDag.cpp
-                 GIMatchDagEdge.cpp
-                 GIMatchDagInstr.cpp
-                 GIMatchDagOperands.cpp
-                 GIMatchDagPredicate.cpp
-                 GIMatchDagPredicateDependencyEdge.cpp
-                 GIMatchTree.cpp
-                )
+  CodeExpander.cpp
+  GIMatchDag.cpp
+  GIMatchDagEdge.cpp
+  GIMatchDagInstr.cpp
+  GIMatchDagOperands.cpp
+  GIMatchDagPredicate.cpp
+  GIMatchDagPredicateDependencyEdge.cpp
+  GIMatchTree.cpp
+  )
 
 # Users may include its headers as "GlobalISel/*.h"
 target_include_directories(LLVMTableGenGlobalISel