[llvm-commits] CVS: llvm/tools/lli/Interpreter/Interpreter.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Apr 25 01:16:01 PDT 2003
Changes in directory llvm/tools/lli/Interpreter:
Interpreter.cpp updated: 1.1 -> 1.2
---
Log message:
MAke sure that LLI properly configures align_of(double)
---
Diffs of the changes:
Index: llvm/tools/lli/Interpreter/Interpreter.cpp
diff -u llvm/tools/lli/Interpreter/Interpreter.cpp:1.1 llvm/tools/lli/Interpreter/Interpreter.cpp:1.2
--- llvm/tools/lli/Interpreter/Interpreter.cpp:1.1 Mon Dec 23 18:01:02 2002
+++ llvm/tools/lli/Interpreter/Interpreter.cpp Fri Apr 25 01:15:05 2003
@@ -27,6 +27,7 @@
CurFrame(-1), TD("lli", (Config & TM::EndianMask) == TM::LittleEndian,
1, 4,
(Config & TM::PtrSizeMask) == TM::PtrSize64 ? 8 : 4,
+ (Config & TM::PtrSizeMask) == TM::PtrSize64 ? 8 : 4,
(Config & TM::PtrSizeMask) == TM::PtrSize64 ? 8 : 4) {
setTargetData(TD);
More information about the llvm-commits
mailing list