projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fbe558c
)
Don't return value from void function. This is only temporary anyway while
author
Nate Begeman
<natebegeman@mac.com>
Tue, 23 Nov 2004 10:04:49 +0000
(10:04 +0000)
committer
Nate 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
patch
|
blob
|
history
diff --git
a/lib/Target/PowerPC/PPCTargetMachine.cpp
b/lib/Target/PowerPC/PPCTargetMachine.cpp
index 10aa823d7381b77e133d1feb618ecbfdf5c29b84..513e44584f45fc7d532c131b70964bd584531f8c 100644
(file)
--- 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());