diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-09-28 06:26:21 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-09-28 06:26:21 +0000 |
commit | ab8c4a5eaa81112a70c966f1c94631860cd7e775 (patch) | |
tree | 85df2fa7df9bd06a100208168daa2727b01b3099 /gcc/gdbhooks.py | |
parent | 93c4ee430ad28de8f3860f9f72c467bd9bc6cd03 (diff) | |
download | gcc-ab8c4a5eaa81112a70c966f1c94631860cd7e775.tar.gz |
update a few places for the change from gimple_statement_base to gimple
gcc/ChangeLog:
2015-09-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* doc/gimple.texi: Update references to gimple_statement_base.
* gdbhooks.py: Likewise.
* gimple.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@228192 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gdbhooks.py')
-rw-r--r-- | gcc/gdbhooks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gdbhooks.py b/gcc/gdbhooks.py index 3a62a2d8acb..2b9a94ca9f7 100644 --- a/gcc/gdbhooks.py +++ b/gcc/gdbhooks.py @@ -484,7 +484,7 @@ def build_pretty_printer(): 'cgraph_node', CGraphNodePrinter) pp.add_printer_for_types(['dw_die_ref'], 'dw_die_ref', DWDieRefPrinter) - pp.add_printer_for_types(['gimple', 'gimple_statement_base *', + pp.add_printer_for_types(['gimple', 'gimple *', # Keep this in the same order as gimple.def: 'gimple_cond', 'const_gimple_cond', |