diff options
author | Scott Michel <scottm@aero.org> | 2008-12-10 00:15:19 +0000 |
---|---|---|
committer | Scott Michel <scottm@aero.org> | 2008-12-10 00:15:19 +0000 |
commit | aedc637c966b6eaa3ca33e9220efe5ec34517de7 (patch) | |
tree | 1345ee8a3819d9eefb4ee01c61d54c7d47995b7d /lib/Target/CellSPU/SPUTargetMachine.cpp | |
parent | 30a64a76492b6a92ccf6d6a6ac907ff8b2b18305 (diff) |
CellSPU:
- Fix bug 3185, with misc other cleanups.
- Needed to implement SPUInstrInfo::InsertBranch(). CAUTION: Not sure what
gets or needs to get passed to InsertBranch() to insert a conditional
branch. This will abort for now until a good test case shows up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CellSPU/SPUTargetMachine.cpp')
-rw-r--r-- | lib/Target/CellSPU/SPUTargetMachine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/CellSPU/SPUTargetMachine.cpp b/lib/Target/CellSPU/SPUTargetMachine.cpp index 48b85832e5..217da2c9ff 100644 --- a/lib/Target/CellSPU/SPUTargetMachine.cpp +++ b/lib/Target/CellSPU/SPUTargetMachine.cpp @@ -18,6 +18,8 @@ #include "llvm/Module.h" #include "llvm/PassManager.h" #include "llvm/Target/TargetMachineRegistry.h" +#include "llvm/CodeGen/RegAllocRegistry.h" +#include "llvm/CodeGen/SchedulerRegistry.h" using namespace llvm; |