summaryrefslogtreecommitdiff
path: root/gcc/cp/dump.c
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>1999-11-03 06:54:37 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>1999-11-03 06:54:37 +0000
commitafe4613a81a8f74f5e616b7e0c249e708d26c0c3 (patch)
tree2c3e0eda3f5f38bc731a016429464df95d406943 /gcc/cp/dump.c
parenteb25810fa890a0d489482eef09684244824b2cce (diff)
downloadgcc-afe4613a81a8f74f5e616b7e0c249e708d26c0c3.tar.gz
* dump.c (dequeue_and_dump): Fix thinko for catch-clauses.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30367 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/dump.c')
-rw-r--r--gcc/cp/dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/dump.c b/gcc/cp/dump.c
index 625804e911a..ef92f182964 100644
--- a/gcc/cp/dump.c
+++ b/gcc/cp/dump.c
@@ -735,7 +735,7 @@ dequeue_and_dump (di)
case START_CATCH_STMT:
dump_stmt (di, t);
- queue_and_dump_type (di, TREE_TYPE (t));
+ queue_and_dump_type (di, t);
dump_next_stmt (di, t);
break;