diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-23 06:56:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-23 06:56:18 +0000 |
commit | c9a6b1f4f6b62ed4dd58bdf9a3772e8d9b12aa37 (patch) | |
tree | 6c4fad74e1cddd941ebaab643401de111d103a0b | |
parent | e61198b3233f0c46900ced6d856534b11bd3d9f2 (diff) |
Be really paranoid about not breaking stuff yet
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18152 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 6eef33d775..10aa823d73 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -114,6 +114,7 @@ bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM, } void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) { + return true; // FIXME: Implement efficient support for garbage collection intrinsics. PM.add(createLowerGCPass()); |