aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/Interpreter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-04-25 06:15:05 +0000
committerChris Lattner <sabre@nondot.org>2003-04-25 06:15:05 +0000
commit6b73fec0ceb6224169e9438e2602e4d62562dd03 (patch)
treed70c8f7eb003c64b3d361d427894a0e75e347722 /lib/ExecutionEngine/Interpreter/Interpreter.cpp
parentdd7253cc9ff640ad193dcbc97683494e559a5b15 (diff)
MAke sure that LLI properly configures align_of(double)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5938 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.cpp')
-rw-r--r--lib/ExecutionEngine/Interpreter/Interpreter.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/lib/ExecutionEngine/Interpreter/Interpreter.cpp
index 678c77a74a..a22466a55d 100644
--- a/lib/ExecutionEngine/Interpreter/Interpreter.cpp
+++ b/lib/ExecutionEngine/Interpreter/Interpreter.cpp
@@ -27,6 +27,7 @@ Interpreter::Interpreter(Module *M, unsigned Config,
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);