From f096183b46ebc84657f98408acc71a8e2142c1e9 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! llvm-svn: 18155 --- lib/Target/PowerPC/PowerPCTargetMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/lib/Target/PowerPC/PowerPCTargetMachine.cpp index 10aa823d738..513e44584f4 100644 --- a/lib/Target/PowerPC/PowerPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PowerPCTargetMachine.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());