aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/dump.c
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>1999-11-03 06:54:37 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-11-03 06:54:37 +0000
commit9581dc651f0dc5a2496e4536d164c57d37fe0723 (patch)
tree2c3e0eda3f5f38bc731a016429464df95d406943 /gcc/cp/dump.c
parentf5733617e3276690734756ff33d6eadcaa31204e (diff)
downloadgcc-9581dc651f0dc5a2496e4536d164c57d37fe0723.zip
gcc-9581dc651f0dc5a2496e4536d164c57d37fe0723.tar.gz
gcc-9581dc651f0dc5a2496e4536d164c57d37fe0723.tar.bz2
* dump.c (dequeue_and_dump): Fix thinko for catch-clauses.
From-SVN: r30367
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 625804e..ef92f18 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;