Don't return value from void function. This is only temporary anyway while
authorNate Begeman <natebegeman@mac.com>
Tue, 23 Nov 2004 10:04:49 +0000 (10:04 +0000)
committerNate Begeman <natebegeman@mac.com>
Tue, 23 Nov 2004 10:04:49 +0000 (10:04 +0000)
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

index 10aa823d7381b77e133d1feb618ecbfdf5c29b84..513e44584f45fc7d532c131b70964bd584531f8c 100644 (file)
@@ -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());