Replace (Lower|Upper)caseString in favor of StringRef's newest methods.
[oota-llvm.git] / lib / Target / MBlaze / CMakeLists.txt
1 set(LLVM_TARGET_DEFINITIONS MBlaze.td)
2
3 tablegen(LLVM MBlazeGenRegisterInfo.inc -gen-register-info)
4 tablegen(LLVM MBlazeGenInstrInfo.inc -gen-instr-info)
5 tablegen(LLVM MBlazeGenCodeEmitter.inc -gen-emitter)
6 tablegen(LLVM MBlazeGenAsmWriter.inc -gen-asm-writer)
7 tablegen(LLVM MBlazeGenAsmMatcher.inc -gen-asm-matcher)
8 tablegen(LLVM MBlazeGenDAGISel.inc -gen-dag-isel)
9 tablegen(LLVM MBlazeGenCallingConv.inc -gen-callingconv)
10 tablegen(LLVM MBlazeGenSubtargetInfo.inc -gen-subtarget)
11 tablegen(LLVM MBlazeGenIntrinsics.inc -gen-tgt-intrinsic)
12 tablegen(LLVM MBlazeGenEDInfo.inc -gen-enhanced-disassembly-info)
13 add_public_tablegen_target(MBlazeCommonTableGen)
14
15 add_llvm_target(MBlazeCodeGen
16   MBlazeDelaySlotFiller.cpp
17   MBlazeInstrInfo.cpp
18   MBlazeISelDAGToDAG.cpp
19   MBlazeISelLowering.cpp
20   MBlazeFrameLowering.cpp
21   MBlazeRegisterInfo.cpp
22   MBlazeSubtarget.cpp
23   MBlazeTargetMachine.cpp
24   MBlazeTargetObjectFile.cpp
25   MBlazeIntrinsicInfo.cpp
26   MBlazeSelectionDAGInfo.cpp
27   MBlazeAsmPrinter.cpp
28   MBlazeMCInstLower.cpp
29   MBlazeELFWriterInfo.cpp
30   )
31
32 add_llvm_library_dependencies(LLVMMBlazeCodeGen
33   LLVMAsmPrinter
34   LLVMCodeGen
35   LLVMCore
36   LLVMMBlazeAsmPrinter
37   LLVMMBlazeDesc
38   LLVMMBlazeInfo
39   LLVMMC
40   LLVMSelectionDAG
41   LLVMSupport
42   LLVMTarget
43   )
44
45 add_subdirectory(AsmParser)
46 add_subdirectory(Disassembler)
47 add_subdirectory(InstPrinter)
48 add_subdirectory(TargetInfo)
49 add_subdirectory(MCTargetDesc)