diff options
-rw-r--r-- | src/grt/ghwlib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/grt/ghwlib.c b/src/grt/ghwlib.c index 0f7e50224..7c5b80bd0 100644 --- a/src/grt/ghwlib.c +++ b/src/grt/ghwlib.c @@ -1042,6 +1042,12 @@ print_name (struct ghw_hie *hie, int full_names) for (i = 0; i < depth; ++i) { printf ("%s%s", i ? "/" : "", buf[i]->name); + if (ghw_hie_generate_for == buf[i]->kind) + { + putchar ('('); + ghw_disp_value (buf[i]->u.blk.iter_value, buf[i]->u.blk.iter_type); + putchar (')'); + } } putchar (':'); putchar (' '); |