diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp index 81de95c6af7..c0269052be5 100644 --- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp @@ -143,6 +143,9 @@ UltraSparc::UltraSparc() // bool UltraSparc::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out) { + // FIXME: implement the switch instruction in the instruction selector. + PM.add(createLowerSwitchPass()); + // Construct and initialize the MachineFunction object for this fn. PM.add(createMachineCodeConstructionPass(*this)); diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp index 5015a9605b3..4113d0e6dc8 100644 --- a/lib/Target/X86/X86TargetMachine.cpp +++ b/lib/Target/X86/X86TargetMachine.cpp @@ -6,10 +6,11 @@ #include "X86TargetMachine.h" #include "X86.h" +#include "llvm/PassManager.h" #include "llvm/Target/TargetMachineImpls.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/Passes.h" -#include "llvm/PassManager.h" +#include "llvm/Transforms/Scalar.h" #include "Support/CommandLine.h" #include "Support/Statistic.h" #include @@ -45,6 +46,9 @@ X86TargetMachine::X86TargetMachine(unsigned Config) /// not supported for this target. /// bool X86TargetMachine::addPassesToJITCompile(PassManager &PM) { + // FIXME: Implement the switch instruction in the instruction selector! + PM.add(createLowerSwitchPass()); + PM.add(createSimpleX86InstructionSelector(*this)); // TODO: optional optimizations go here