diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-29 17:55:50 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-29 17:55:50 +0000 |
commit | 73a27c894f504b4e08c4319366f4133aa7b645ba (patch) | |
tree | dd596c9d451834ad4add5109f9c9ce0d2497faab /lib/ExecutionEngine/Interpreter/Interpreter.cpp | |
parent | 519e239b1f8e12a6566d5140bfd08733ff227706 (diff) |
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/Interpreter.cpp')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/lib/ExecutionEngine/Interpreter/Interpreter.cpp index 2b805ada4c..1cce7cb8d3 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); |