[llvm-commits] CVS: llvm/lib/Target/PowerPC/PowerPCJITInfo.h
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Fri Jul 29 16:32:14 PDT 2005
Changes in directory llvm/lib/Target/PowerPC:
PowerPCJITInfo.h updated: 1.5 -> 1.6
---
Log message:
turn off GOT on archs that didn't use it (not that it appeard to harm them much with it on)
---
Diffs of the changes: (+1 -1)
PowerPCJITInfo.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/PowerPC/PowerPCJITInfo.h
diff -u llvm/lib/Target/PowerPC/PowerPCJITInfo.h:1.5 llvm/lib/Target/PowerPC/PowerPCJITInfo.h:1.6
--- llvm/lib/Target/PowerPC/PowerPCJITInfo.h:1.5 Thu Apr 21 18:20:02 2005
+++ llvm/lib/Target/PowerPC/PowerPCJITInfo.h Fri Jul 29 18:32:02 2005
@@ -23,7 +23,7 @@
protected:
TargetMachine &TM;
public:
- PowerPCJITInfo(TargetMachine &tm) : TM(tm) {}
+ PowerPCJITInfo(TargetMachine &tm) : TM(tm) {useGOT = 0;}
/// addPassesToJITCompile - Add passes to the specified pass manager to
/// implement a fast dynamic compiler for this target. Return true if this
More information about the llvm-commits
mailing list