diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-07-11 17:22:51 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-07-11 17:22:51 +0000 |
commit | cf5c6e4adb9843cd24e24d02fa98385f2a74676b (patch) | |
tree | 88a489606c79e709e7feff91b16e45a419b68efa /llvm/lib/Bytecode/Writer | |
parent | a64b62ef6af9afb99c6c7092395190f36d864672 (diff) | |
download | bcm5719-llvm-cf5c6e4adb9843cd24e24d02fa98385f2a74676b.tar.gz bcm5719-llvm-cf5c6e4adb9843cd24e24d02fa98385f2a74676b.zip |
Remove tabs.
llvm-svn: 14763
Diffstat (limited to 'llvm/lib/Bytecode/Writer')
-rw-r--r-- | llvm/lib/Bytecode/Writer/WriterPrimitives.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bytecode/Writer/WriterPrimitives.h b/llvm/lib/Bytecode/Writer/WriterPrimitives.h index 02c225baf1b..c62d6cc281a 100644 --- a/llvm/lib/Bytecode/Writer/WriterPrimitives.h +++ b/llvm/lib/Bytecode/Writer/WriterPrimitives.h @@ -120,7 +120,7 @@ static inline void output_data(const void *Ptr, const void *End, } 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_float(float& FloatVal, } 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. |