From 7c83619cd6492080ae25313b88f7b9052908681b Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Thu, 30 May 2019 09:50:39 +0200 Subject: [PATCH] gdbinit: add a new command and fix one 2019-05-30 Martin Liska * gdbinit.in: Fix 'ptc' command. Add trt that prints TREE_TYPE($). From-SVN: r271763 --- gcc/ChangeLog | 5 +++++ gcc/gdbinit.in | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cc1b6b4..ecbb87f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2019-05-30 Martin Liska + + * gdbinit.in: Fix 'ptc' command. Add trt + that prints TREE_TYPE($). + 2019-05-29 Bill Schmidt Alan Modra diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in index e16c3c8..440fd25 100644 --- a/gcc/gdbinit.in +++ b/gcc/gdbinit.in @@ -113,7 +113,7 @@ Works only when an inferior is executing. end define ptc -output (enum tree_code) $.common.code +output (enum tree_code) $.base.code echo \n end @@ -201,6 +201,14 @@ document pcfun Print current function. end +define trt +print ($.typed.type) +end + +document trt +Print TREE_TYPE of the tree node that is $ +end + define break-on-diagnostic break diagnostic_show_locus end -- 2.7.4