diff options
Diffstat (limited to 'lib/Target/SparcV9/SparcV9TargetMachine.cpp')
-rw-r--r-- | lib/Target/SparcV9/SparcV9TargetMachine.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp index e8172c1..c060f75 100644 --- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp @@ -136,6 +136,8 @@ SparcV9TargetMachine::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out // FIXME: implement the switch instruction in the instruction selector. PM.add(createLowerSwitchPass()); + PM.add(createLowerSelectPass()); + // FIXME: implement the invoke/unwind instructions! PM.add(createLowerInvokePass()); @@ -211,6 +213,8 @@ void SparcV9JITInfo::addPassesToJITCompile(FunctionPassManager &PM) { // FIXME: implement the switch instruction in the instruction selector. PM.add(createLowerSwitchPass()); + PM.add(createLowerSelectPass()); + // FIXME: implement the invoke/unwind instructions! PM.add(createLowerInvokePass()); |