Add CodeEmitter and JITInfo stubs. Dump the old
PowerPCTargetMachine::addPassesToJITCompile() method, in favor of the
TargetJITInfo interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10971 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/lib/Target/PowerPC/PowerPCTargetMachine.cpp
index 11b5a79..3cf8c37 100644
--- a/lib/Target/PowerPC/PowerPCTargetMachine.cpp
+++ b/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