[llvm-commits] CVS: llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp

Reid Spencer reid at x10sys.com
Mon Jan 29 09:56:06 PST 2007



Changes in directory llvm/lib/ExecutionEngine/Interpreter:

Interpreter.cpp updated: 1.35 -> 1.36
---
Log message:

Remove tabs.


---
Diffs of the changes:  (+2 -2)

 Interpreter.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
diff -u llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp:1.35 llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp:1.36
--- llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp:1.35	Mon Jan 29 11:51:02 2007
+++ llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp	Mon Jan 29 11:55:50 2007
@@ -46,8 +46,8 @@
   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);
 






More information about the llvm-commits mailing list