summaryrefslogtreecommitdiff
path: root/lib/Bytecode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-11-12 18:34:09 +0000
committerChris Lattner <sabre@nondot.org>2005-11-12 18:34:09 +0000
commitc76ea439b6231cedcbcffd27169dbad673151c55 (patch)
treeed6c79040c529d364d76d4c2a83a5f6135a85830 /lib/Bytecode
parent39979ea43ffac86edca0b2d7c580846175fbdb53 (diff)
downloadllvm-c76ea439b6231cedcbcffd27169dbad673151c55.tar.gz
llvm-c76ea439b6231cedcbcffd27169dbad673151c55.tar.bz2
llvm-c76ea439b6231cedcbcffd27169dbad673151c55.tar.xz
trivial cleanup
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24330 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode')
-rw-r--r--lib/Bytecode/Writer/Writer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp
index 879d50c86a..c82665e947 100644
--- a/lib/Bytecode/Writer/Writer.cpp
+++ b/lib/Bytecode/Writer/Writer.cpp
@@ -161,8 +161,8 @@ inline void BytecodeWriter::output_double(double& DoubleVal) {
Out.push_back( static_cast<unsigned char>( (i >> 56) & 0xFF));
}
-inline BytecodeBlock::BytecodeBlock(unsigned ID, BytecodeWriter& w,
- bool elideIfEmpty, bool hasLongFormat )
+inline BytecodeBlock::BytecodeBlock(unsigned ID, BytecodeWriter &w,
+ bool elideIfEmpty, bool hasLongFormat)
: Id(ID), Writer(w), ElideIfEmpty(elideIfEmpty), HasLongFormat(hasLongFormat){
if (HasLongFormat) {