diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wasm.h b/src/wasm.h index 37e79dddb..cb137747f 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -635,12 +635,12 @@ public: o << (signed_ ? "_s" : "_u"); } restoreNormalColor(o); - if (align) { - o << " align=" << align; - } if (offset) { o << " offset=" << offset; } + if (align) { + o << " align=" << align; + } incIndent(o, indent); printFullLine(o, indent, ptr); return decIndent(o, indent); @@ -669,12 +669,12 @@ public: } } restoreNormalColor(o); - if (align) { - o << " align=" << align; - } if (offset) { o << " offset=" << offset; } + if (align) { + o << " align=" << align; + } incIndent(o, indent); printFullLine(o, indent, ptr); printFullLine(o, indent, value); |