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