Remove tabs.

llvm-svn: 33620
This commit is contained in:
Reid Spencer 2007-01-29 17:55:50 +00:00
parent c0ebe17b6a
commit f7024eb670

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