summaryrefslogtreecommitdiff
path: root/src/binary-reader-objdump.cc
diff options
context:
space:
mode:
authorOliver Horn <oliver.horn@gmx.net>2019-10-28 20:32:36 +0100
committerSam Clegg <sbc@chromium.org>2019-10-28 12:32:36 -0700
commita79d64327b480f63fa28a5e239b98ce64ebbe9b9 (patch)
treecbc97f676d9cff32a3356eb7e9f37d66adc88345 /src/binary-reader-objdump.cc
parentffefb3ba2cdfca91fd20a8ac99c668f80140760d (diff)
downloadwabt-a79d64327b480f63fa28a5e239b98ce64ebbe9b9.tar.gz
wabt-a79d64327b480f63fa28a5e239b98ce64ebbe9b9.tar.bz2
wabt-a79d64327b480f63fa28a5e239b98ce64ebbe9b9.zip
wasm-objdump: Consistent output of table types (#1198)
Adjusts the output of table imports to the output of table declarations and other elements: - `type` instead of `elem_type` - limits: `initial` instead of `init`, check `has_max`
Diffstat (limited to 'src/binary-reader-objdump.cc')
-rw-r--r--src/binary-reader-objdump.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/binary-reader-objdump.cc b/src/binary-reader-objdump.cc
index d9ec18a8..bb3c57ed 100644
--- a/src/binary-reader-objdump.cc
+++ b/src/binary-reader-objdump.cc
@@ -1129,10 +1129,11 @@ Result BinaryReaderObjdump::OnImportTable(Index import_index,
Index table_index,
Type elem_type,
const Limits* elem_limits) {
- PrintDetails(" - table[%" PRIindex "] elem_type=%s init=%" PRId64
- " max=%" PRId64,
- table_index, GetTypeName(elem_type), elem_limits->initial,
- elem_limits->max);
+ PrintDetails(" - table[%" PRIindex "] type=%s initial=%" PRId64, table_index,
+ GetTypeName(elem_type), elem_limits->initial);
+ if (elem_limits->has_max) {
+ PrintDetails(" max=%" PRId64, elem_limits->max);
+ }
PrintDetails(" <- " PRIstringview "." PRIstringview "\n",
WABT_PRINTF_STRING_VIEW_ARG(module_name),
WABT_PRINTF_STRING_VIEW_ARG(field_name));