Remove tabs.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33620 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-01-29 17:55:50 +00:00
parent 519e239b1f
commit 73a27c894f

View File

@ -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);