Add CodeEmitter and JITInfo stubs. Dump the old
PowerPCTargetMachine::addPassesToJITCompile() method, in favor of the
TargetJITInfo interface.
llvm-svn: 10971
diff --git a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
index 11b5a79..3cf8c37 100644
--- a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
+++ b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
@@ -43,11 +43,9 @@
}
/// addPassesToJITCompile - Add passes to the specified pass manager to
-/// implement a fast dynamic compiler for this target. Return true if this is
-/// not supported for this target.
+/// implement a fast dynamic compiler for this target.
///
-bool PowerPCTargetMachine::addPassesToJITCompile(FunctionPassManager &PM) {
- return true;
+void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
}
} // end namespace llvm