Remove tabs.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14763 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Bytecode/Writer/WriterPrimitives.h b/lib/Bytecode/Writer/WriterPrimitives.h
index 02c225b..c62d6cc 100644
--- a/lib/Bytecode/Writer/WriterPrimitives.h
+++ b/lib/Bytecode/Writer/WriterPrimitives.h
@@ -120,7 +120,7 @@
 }
 
 static inline void output_float(float& FloatVal, 
-	                        std::deque<unsigned char>& Out) {
+                                std::deque<unsigned char>& Out) {
   /// FIXME: This is a broken implementation! It writes
   /// it in a platform-specific endianess. Need to make
   /// it little endian always.
@@ -128,7 +128,7 @@
 }
 
 static inline void output_double(double& DoubleVal, 
-	                        std::deque<unsigned char>& Out) {
+                                std::deque<unsigned char>& Out) {
   /// FIXME: This is a broken implementation! It writes
   /// it in a platform-specific endianess. Need to make
   /// it little endian always.