mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 01:24:30 +00:00
trivial cleanup
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24330 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -161,8 +161,8 @@ inline void BytecodeWriter::output_double(double& DoubleVal) {
|
|||||||
Out.push_back( static_cast<unsigned char>( (i >> 56) & 0xFF));
|
Out.push_back( static_cast<unsigned char>( (i >> 56) & 0xFF));
|
||||||
}
|
}
|
||||||
|
|
||||||
inline BytecodeBlock::BytecodeBlock(unsigned ID, BytecodeWriter& w,
|
inline BytecodeBlock::BytecodeBlock(unsigned ID, BytecodeWriter &w,
|
||||||
bool elideIfEmpty, bool hasLongFormat )
|
bool elideIfEmpty, bool hasLongFormat)
|
||||||
: Id(ID), Writer(w), ElideIfEmpty(elideIfEmpty), HasLongFormat(hasLongFormat){
|
: Id(ID), Writer(w), ElideIfEmpty(elideIfEmpty), HasLongFormat(hasLongFormat){
|
||||||
|
|
||||||
if (HasLongFormat) {
|
if (HasLongFormat) {
|
||||||
|
Reference in New Issue
Block a user