[llvm-commits] CVS: llvm/include/llvm/Support/Dwarf.h MathExtras.h

Anton Korobeynikov asl at math.spbu.ru
Mon Apr 16 11:11:44 PDT 2007



Changes in directory llvm/include/llvm/Support:

Dwarf.h updated: 1.11 -> 1.12
MathExtras.h updated: 1.44 -> 1.45
---
Log message:

Removed tabs everywhere except autogenerated & external files. Add make 
target for tabs checking.


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

 Dwarf.h      |    2 +-
 MathExtras.h |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/include/llvm/Support/Dwarf.h
diff -u llvm/include/llvm/Support/Dwarf.h:1.11 llvm/include/llvm/Support/Dwarf.h:1.12
--- llvm/include/llvm/Support/Dwarf.h:1.11	Thu Feb  1 10:31:34 2007
+++ llvm/include/llvm/Support/Dwarf.h	Mon Apr 16 13:10:22 2007
@@ -44,7 +44,7 @@
   DW_TAG_user_base = 0x1000,            // Recommended base for user tags.
   
   DW_CIE_VERSION = 1,                   // Common frame information version.
-  DW_CIE_ID	 = 0xffffffff               // Common frame information mark.
+  DW_CIE_ID       = 0xffffffff          // Common frame information mark.
 };
 
 enum dwarf_constants {


Index: llvm/include/llvm/Support/MathExtras.h
diff -u llvm/include/llvm/Support/MathExtras.h:1.44 llvm/include/llvm/Support/MathExtras.h:1.45
--- llvm/include/llvm/Support/MathExtras.h:1.44	Thu Mar 22 14:11:57 2007
+++ llvm/include/llvm/Support/MathExtras.h	Mon Apr 16 13:10:22 2007
@@ -109,7 +109,7 @@
 /// 32-bit argument, Value.
 inline uint32_t ByteSwap_32(uint32_t Value) {
 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
-	return __builtin_bswap32(Value);
+  return __builtin_bswap32(Value);
 #elif defined(_MSC_VER) && !defined(_DEBUG)
   return _byteswap_ulong(Value);
 #else
@@ -125,7 +125,7 @@
 /// 64-bit argument, Value.
 inline uint64_t ByteSwap_64(uint64_t Value) {
 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
-	return __builtin_bswap64(Value);
+  return __builtin_bswap64(Value);
 #elif defined(_MSC_VER) && !defined(_DEBUG)
   return _byteswap_uint64(Value);
 #else






More information about the llvm-commits mailing list