Move the code that inserts X87 FP_REG_KILL instructions from a
[oota-llvm.git] / lib / Target / X86 / CMakeLists.txt
1 set(LLVM_TARGET_DEFINITIONS X86.td)
2
3 tablegen(X86GenRegisterInfo.h.inc -gen-register-desc-header)
4 tablegen(X86GenRegisterNames.inc -gen-register-enums)
5 tablegen(X86GenRegisterInfo.inc -gen-register-desc)
6 tablegen(X86GenInstrNames.inc -gen-instr-enums)
7 tablegen(X86GenInstrInfo.inc -gen-instr-desc)
8 tablegen(X86GenAsmWriter.inc -gen-asm-writer)
9 tablegen(X86GenAsmWriter1.inc -gen-asm-writer -asmwriternum=1)
10 tablegen(X86GenDAGISel.inc -gen-dag-isel)
11 tablegen(X86GenFastISel.inc -gen-fast-isel)
12 tablegen(X86GenCallingConv.inc -gen-callingconv)
13 tablegen(X86GenSubtarget.inc -gen-subtarget)
14
15 add_llvm_target(X86CodeGen
16   X86CodeEmitter.cpp
17   X86ELFWriterInfo.cpp
18   X86FloatingPoint.cpp
19   X86FloatingPointRegKill.cpp
20   X86ISelDAGToDAG.cpp
21   X86ISelLowering.cpp
22   X86InstrInfo.cpp
23   X86JITInfo.cpp
24   X86RegisterInfo.cpp
25   X86Subtarget.cpp
26   X86TargetAsmInfo.cpp
27   X86TargetMachine.cpp
28   X86FastISel.cpp
29   )