Remove tabs.
[oota-llvm.git] / lib / ExecutionEngine / Interpreter / Interpreter.cpp
index 2b805ada4c16339453407f327c324db874b6180f..1cce7cb8d3c70dbcc9eb70efb65fe297483e5660 100644 (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);