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 | 05ad23711edc5ab56b302571419314da29d79199 (patch) | |
tree | 6b29d3d132e7a9a301fa5a84c00736bd8065190a /lib | |
parent | fdd10b18f28fedeb05afcf6d0fe513e413e02ff3 (diff) | |
download | external_llvm-05ad23711edc5ab56b302571419314da29d79199.zip external_llvm-05ad23711edc5ab56b302571419314da29d79199.tar.gz external_llvm-05ad23711edc5ab56b302571419314da29d79199.tar.bz2 |
Remove this method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18159 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 513e445..a1637a0 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.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) |