gdbinit: add a new command and fix one
2019-05-30 Martin Liska <mliska@suse.cz> * gdbinit.in: Fix 'ptc' command. Add trt that prints TREE_TYPE($). From-SVN: r271763
This commit is contained in:
parent
7797a62244
commit
7c83619cd6
2 changed files with 14 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2019-05-30 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* gdbinit.in: Fix 'ptc' command. Add trt
|
||||
that prints TREE_TYPE($).
|
||||
|
||||
2019-05-29 Bill Schmidt <wschmidt@linux.ibm.com>
|
||||
Alan Modra <amodra@gmail.com>
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue