diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-23 18:47:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-23 18:47:42 +0000 |
commit | 24ad93f55cc0822682c3d6ee75d7f69445261a73 (patch) | |
tree | bca2c3eaa7893f4e9e07437116503e63dfb26e33 /llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp | |
parent | f675b49722b4b848da16645bb42fa4e399e002e4 (diff) | |
download | bcm5719-llvm-24ad93f55cc0822682c3d6ee75d7f69445261a73.tar.gz bcm5719-llvm-24ad93f55cc0822682c3d6ee75d7f69445261a73.zip |
Remove this method.
llvm-svn: 18159
Diffstat (limited to 'llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp index 513e44584f4..a1637a0d26a 100644 --- a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp @@ -114,7 +114,6 @@ bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM, } void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) { - return; // FIXME: Implement efficient support for garbage collection intrinsics. PM.add(createLowerGCPass()); @@ -140,10 +139,6 @@ void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) { PM.add(createMachineFunctionPrinterPass(&std::cerr)); } -void PowerPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { - assert(0 && "Cannot execute PowerPCJITInfo::replaceMachineCodeForFunction()"); -} - /// PowerPCTargetMachine ctor - Create an ILP32 architecture model /// PPC32TargetMachine::PPC32TargetMachine(const Module &M, IntrinsicLowering *IL) |