trivial cleanup
authorChris Lattner <sabre@nondot.org>
Sat, 12 Nov 2005 18:34:09 +0000 (18:34 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 12 Nov 2005 18:34:09 +0000 (18:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24330 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Writer/Writer.cpp

index 879d50c86a1be5496d25dedb974559208796f2af..c82665e9478ff6e545384280a0da752ba6160d78 100644 (file)
@@ -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, BytecodeWriterw,
-                                    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) {