summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/binary-reader-objdump.cc10
-rw-r--r--test/dump/global.txt8
2 files changed, 12 insertions, 6 deletions
diff --git a/src/binary-reader-objdump.cc b/src/binary-reader-objdump.cc
index 58e9cbce..5ecf7f5f 100644
--- a/src/binary-reader-objdump.cc
+++ b/src/binary-reader-objdump.cc
@@ -1253,9 +1253,15 @@ void BinaryReaderObjdump::PrintInitExpr(const InitExpr& expr) {
expr.value.v128_v.v[2], expr.value.v128_v.v[3]);
break;
}
- case InitExprType::Global:
- PrintDetails(" - init global=%" PRIindex "\n", expr.value.global);
+ case InitExprType::Global: {
+ PrintDetails(" - init global=%" PRIindex, expr.value.global);
+ string_view name = GetGlobalName(expr.value.global);
+ if (!name.empty()) {
+ PrintDetails(" <" PRIstringview ">", WABT_PRINTF_STRING_VIEW_ARG(name));
+ }
+ PrintDetails("\n");
break;
+ }
}
}
diff --git a/test/dump/global.txt b/test/dump/global.txt
index df1fa63c..4a310788 100644
--- a/test/dump/global.txt
+++ b/test/dump/global.txt
@@ -116,10 +116,10 @@ Global[8]:
- global[5] i64 mutable=0 - init i64=2
- global[6] f32 mutable=0 - init f32=0x1.8p+1
- global[7] f64 mutable=0 - init f64=0x1p+2
- - global[8] i32 mutable=0 - init global=0
- - global[9] i64 mutable=0 - init global=1
- - global[10] f32 mutable=0 - init global=2
- - global[11] f64 mutable=0 - init global=3
+ - global[8] i32 mutable=0 - init global=0 <foo.i32_global>
+ - global[9] i64 mutable=0 - init global=1 <foo.i64_global>
+ - global[10] f32 mutable=0 - init global=2 <foo.f32_global>
+ - global[11] f64 mutable=0 - init global=3 <foo.f64_global>
Code Disassembly: