diff options
author | Chris Lattner <sabre@nondot.org> | 2005-11-12 18:34:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-11-12 18:34:09 +0000 |
commit | 026a5ef177d76045fc2225a7db3d18557d808a70 (patch) | |
tree | 5192590509bbe272a15f02f45123fa6b4a7214f7 /llvm/lib/Bytecode | |
parent | b264c5d4dc7d076bdc795932d164113243564a93 (diff) | |
download | bcm5719-llvm-026a5ef177d76045fc2225a7db3d18557d808a70.tar.gz bcm5719-llvm-026a5ef177d76045fc2225a7db3d18557d808a70.zip |
trivial cleanup
llvm-svn: 24330
Diffstat (limited to 'llvm/lib/Bytecode')
-rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index 879d50c86a1..c82665e9478 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/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) { |