[llvm-commits] CVS: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp

Nate Begeman natebegeman at mac.com
Tue Nov 23 02:04:59 PST 2004



Changes in directory llvm/lib/Target/PowerPC:

PowerPCTargetMachine.cpp updated: 1.39 -> 1.40
---
Log message:

Don't return value from void function.  This is only temporary anyway while
the JIT is made to work!


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.39 llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.40
--- llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.39	Tue Nov 23 00:56:18 2004
+++ llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp	Tue Nov 23 04:04:49 2004
@@ -114,7 +114,7 @@
 }
 
 void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
-  return true;
+  return;
   // FIXME: Implement efficient support for garbage collection intrinsics.
   PM.add(createLowerGCPass());
 






More information about the llvm-commits mailing list