diff options
author | Rod Vagg <rod@vagg.org> | 2023-12-02 15:25:05 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 20:25:05 -0800 |
commit | 678026224f5f565600e923ad4510eaf7ed8a8cd8 (patch) | |
tree | 8aed865e7c49741b6f2ebd2314737f7463fe576d | |
parent | 2428315bab6d71b4ec794f5519374f2448cabb44 (diff) | |
download | wabt-678026224f5f565600e923ad4510eaf7ed8a8cd8.tar.gz wabt-678026224f5f565600e923ad4510eaf7ed8a8cd8.tar.bz2 wabt-678026224f5f565600e923ad4510eaf7ed8a8cd8.zip |
[wasm-objdump] Print i64 values as unsigned (#2344)
This matches the behaviour of i32 printing.
Ref: https://github.com/WebAssembly/wabt/pull/2342
-rw-r--r-- | src/binary-reader-objdump.cc | 2 | ||||
-rw-r--r-- | test/dump/const.txt | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/binary-reader-objdump.cc b/src/binary-reader-objdump.cc index e1d2d513..a96d4947 100644 --- a/src/binary-reader-objdump.cc +++ b/src/binary-reader-objdump.cc @@ -853,7 +853,7 @@ Result BinaryReaderObjdumpDisassemble::OnOpcodeUint64(uint64_t value) { if (!in_function_body) { return Result::Ok; } - LogOpcode("%" PRId64, value); + LogOpcode("%" PRIu64, value); return Result::Ok; } diff --git a/test/dump/const.txt b/test/dump/const.txt index 6012d7e0..512bbd36 100644 --- a/test/dump/const.txt +++ b/test/dump/const.txt @@ -242,15 +242,15 @@ Code Disassembly: 00002f: 1a | drop 000030: 42 00 | i64.const 0 000032: 1a | drop - 000033: 42 80 80 80 80 80 80 80 80 | i64.const -9223372036854775808 + 000033: 42 80 80 80 80 80 80 80 80 | i64.const 9223372036854775808 00003c: 80 7f | 00003e: 1a | drop - 00003f: 42 7f | i64.const -1 + 00003f: 42 7f | i64.const 18446744073709551615 000041: 1a | drop - 000042: 42 80 80 80 80 80 80 80 80 | i64.const -9223372036854775808 + 000042: 42 80 80 80 80 80 80 80 80 | i64.const 9223372036854775808 00004b: 80 7f | 00004d: 1a | drop - 00004e: 42 7f | i64.const -1 + 00004e: 42 7f | i64.const 18446744073709551615 000050: 1a | drop 000051: 43 00 00 00 00 | f32.const 0x0p+0 000056: 1a | drop |