[llvm-commits] CVS: llvm/lib/Target/SparcV9/SparcV9JITInfo.h
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Fri Jul 29 16:32:14 PDT 2005
Changes in directory llvm/lib/Target/SparcV9:
SparcV9JITInfo.h updated: 1.9 -> 1.10
---
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)
SparcV9JITInfo.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/SparcV9/SparcV9JITInfo.h
diff -u llvm/lib/Target/SparcV9/SparcV9JITInfo.h:1.9 llvm/lib/Target/SparcV9/SparcV9JITInfo.h:1.10
--- llvm/lib/Target/SparcV9/SparcV9JITInfo.h:1.9 Fri Jul 22 15:49:37 2005
+++ llvm/lib/Target/SparcV9/SparcV9JITInfo.h Fri Jul 29 18:32:02 2005
@@ -24,7 +24,7 @@
class SparcV9JITInfo : public TargetJITInfo {
TargetMachine &TM;
public:
- SparcV9JITInfo(TargetMachine &tm) : TM(tm) {}
+ SparcV9JITInfo(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