public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf probe: print an enum type variable in "enum variable-name" format when showing accessible variables
@ 2012-09-27  2:36 Hyeoncheol Lee
  2012-09-27  9:08 ` Masami Hiramatsu
  2012-09-28 16:39 ` [tip:perf/core] perf probe: Print an enum type variable in " enum " tip-bot for Hyeoncheol Lee
  0 siblings, 2 replies; 3+ messages in thread
From: Hyeoncheol Lee @ 2012-09-27  2:36 UTC (permalink / raw)
  To: acme; +Cc: LKML, Masami Hiramatsu

When showing accessible variables, an enum type variable was
 printed in "variable-name" format. Change this format into
"enum variable-name".

Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Signed-off-by: Hyeoncheol Lee <hyc.lee@gmail.com>
---
 tools/perf/util/dwarf-aux.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/perf/util/dwarf-aux.c b/tools/perf/util/dwarf-aux.c
index ee51e9b..3e5f543 100644
--- a/tools/perf/util/dwarf-aux.c
+++ b/tools/perf/util/dwarf-aux.c
@@ -804,6 +804,8 @@ int die_get_typename(Dwarf_Die *vr_die, char *buf, int len)
 			tmp = "union ";
 		else if (tag == DW_TAG_structure_type)
 			tmp = "struct ";
+		else if (tag == DW_TAG_enumeration_type)
+			tmp = "enum ";
 		/* Write a base name */
 		ret = snprintf(buf, len, "%s%s", tmp, dwarf_diename(&type));
 		return (ret >= len) ? -E2BIG : ret;
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-09-28 16:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-27  2:36 [PATCH] perf probe: print an enum type variable in "enum variable-name" format when showing accessible variables Hyeoncheol Lee
2012-09-27  9:08 ` Masami Hiramatsu
2012-09-28 16:39 ` [tip:perf/core] perf probe: Print an enum type variable in " enum " tip-bot for Hyeoncheol Lee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox