1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

trivial cleanup

llvm-svn: 24330
This commit is contained in:
Chris Lattner 2005-11-12 18:34:09 +00:00
parent a8fcbe17d7
commit 0ad610671f

View 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, 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) {