aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Interpreter
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-29 17:55:50 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-29 17:55:50 +0000
commit73a27c894f504b4e08c4319366f4133aa7b645ba (patch)
treedd596c9d451834ad4add5109f9c9ce0d2497faab /lib/ExecutionEngine/Interpreter
parent519e239b1f8e12a6566d5140bfd08733ff227706 (diff)
downloadexternal_llvm-73a27c894f504b4e08c4319366f4133aa7b645ba.zip
external_llvm-73a27c894f504b4e08c4319366f4133aa7b645ba.tar.gz
external_llvm-73a27c894f504b4e08c4319366f4133aa7b645ba.tar.bz2
Remove tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33620 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter')
-rw-r--r--lib/ExecutionEngine/Interpreter/Interpreter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/lib/ExecutionEngine/Interpreter/Interpreter.cpp
index 2b805ad..1cce7cb 100644
--- a/lib/ExecutionEngine/Interpreter/Interpreter.cpp
+++ b/lib/ExecutionEngine/Interpreter/Interpreter.cpp
@@ -46,8 +46,8 @@ ExecutionEngine *Interpreter::create(ModuleProvider *MP) {
bool isLittleEndian = (Test == 1);
DataLayout.append(isLittleEndian ? "e" : "E");
- bool Ptr64 = sizeof(void*) == 8;
- DataLayout.append(Ptr64 ? "-p:64:64" : "-p:32:32");
+ bool Ptr64 = sizeof(void*) == 8;
+ DataLayout.append(Ptr64 ? "-p:64:64" : "-p:32:32");
M->setDataLayout(DataLayout);