Separate the concept of having memory access in operand 4 from the concept of having...
[oota-llvm.git] / lib / Target / CMakeLists.txt
index 888c1a3c00e3bb4b28f4b96fdc32e27f130b560b..d8bc7439f6365596c23953829ae8ebc628a3bc87 100644 (file)
@@ -1,16 +1,19 @@
 add_llvm_library(LLVMTarget
-  SubtargetFeature.cpp
+  Mangler.cpp
   Target.cpp
   TargetData.cpp
   TargetELFWriterInfo.cpp
-  TargetFrameInfo.cpp
   TargetInstrInfo.cpp
   TargetIntrinsicInfo.cpp
+  TargetJITInfo.cpp
+  TargetLibraryInfo.cpp
   TargetLoweringObjectFile.cpp
-  TargetMachOWriterInfo.cpp
   TargetMachine.cpp
   TargetRegisterInfo.cpp
-  TargetSubtarget.cpp
+  TargetSubtargetInfo.cpp
   )
 
-# TODO: Support other targets besides X86. See Makefile.
+foreach(t ${LLVM_TARGETS_TO_BUILD})
+  message(STATUS "Targeting ${t}")
+  add_subdirectory(${t})
+endforeach()