From: Chris Lattner Date: Sat, 12 Nov 2005 18:34:09 +0000 (+0000) Subject: trivial cleanup X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c76ea439b6231cedcbcffd27169dbad673151c55;p=oota-llvm.git trivial cleanup git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24330 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp index 879d50c86a1..c82665e9478 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( (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) {