From dd30751654aaa85efa9dbe2f610a90f38a248800 Mon Sep 17 00:00:00 2001 From: Nate Begeman Date: Tue, 23 Nov 2004 10:04:49 +0000 Subject: [PATCH] Don't return value from void function. This is only temporary anyway while the JIT is made to work! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18155 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCTargetMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 10aa823d738..513e44584f4 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -114,7 +114,7 @@ bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM, } void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) { - return true; + return; // FIXME: Implement efficient support for garbage collection intrinsics. PM.add(createLowerGCPass()); -- 2.34.1