aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-07-11 17:22:51 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-07-11 17:22:51 +0000
commit1d9349a78378d2f08bc02a8e2cab6748ef47d28b (patch)
tree2047ba2e7cfd2162cf5bc67608fd2c58ed08bd47
parent87bc41833458760082d259f92d1e40a343428ceb (diff)
downloadexternal_llvm-1d9349a78378d2f08bc02a8e2cab6748ef47d28b.zip
external_llvm-1d9349a78378d2f08bc02a8e2cab6748ef47d28b.tar.gz
external_llvm-1d9349a78378d2f08bc02a8e2cab6748ef47d28b.tar.bz2
Remove tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14763 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Bytecode/Writer/WriterPrimitives.h4
1 files changed, 2 insertions, 2 deletions
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_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.