diff options
| author | Nate Begeman <natebegeman@mac.com> | 2004-11-23 10:04:49 +0000 | 
|---|---|---|
| committer | Nate Begeman <natebegeman@mac.com> | 2004-11-23 10:04:49 +0000 | 
| commit | 7e7a08dba52fe861c992dcef9da01c8387c7f5e4 (patch) | |
| tree | a9b31d972923df6bd84ce92ee1c6bdb0e7064cd7 /llvm/lib | |
| parent | bde370eb584b24e79eb493bf387bd7108ad2232f (diff) | |
| download | bcm5719-llvm-7e7a08dba52fe861c992dcef9da01c8387c7f5e4.tar.gz bcm5719-llvm-7e7a08dba52fe861c992dcef9da01c8387c7f5e4.zip  | |
Don't return value from void function.  This is only temporary anyway while
the JIT is made to work!
llvm-svn: 18155
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp index 10aa823d738..513e44584f4 100644 --- a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp +++ b/llvm/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());  | 

