From: Nate Begeman Date: Tue, 23 Nov 2004 10:04:49 +0000 (+0000) Subject: Don't return value from void function. This is only temporary anyway while X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=dd30751654aaa85efa9dbe2f610a90f38a248800;p=oota-llvm.git 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 --- 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());