mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
output alignment value in hex so that we get:
.align 3, 0x90 instead of, .align 3, 144 suggested by eric. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80875 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ef6b2c05fd
commit
579531c61b
@ -225,7 +225,8 @@ void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
|
||||
OS << Log2_32(ByteAlignment);
|
||||
|
||||
if (Value || MaxBytesToEmit) {
|
||||
OS << ", " << truncateToSize(Value, ValueSize);
|
||||
OS << ", 0x";
|
||||
OS.write_hex(truncateToSize(Value, ValueSize));
|
||||
|
||||
if (MaxBytesToEmit)
|
||||
OS << ", " << MaxBytesToEmit;
|
||||
|
Loading…
x
Reference in New Issue
Block a user