From 73a27c894f504b4e08c4319366f4133aa7b645ba Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 29 Jan 2007 17:55:50 +0000 Subject: [PATCH] Remove tabs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33620 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/Interpreter/Interpreter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/lib/ExecutionEngine/Interpreter/Interpreter.cpp index 2b805ada4c1..1cce7cb8d3c 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); -- 2.34.1