diff options
| -rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/cp/error.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 572b774..64018ad 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2004-02-13 Giovanni Bajo <giovannibajo@gcc.gnu.org> + + PR c++/13927 + * error.c (dump_decl) <ALIAS_DECL>: Dump as simple declarations. + 2004-02-13 Mark Mitchell <mark@codesourcery.com> PR c++/14122 diff --git a/gcc/cp/error.c b/gcc/cp/error.c index 46500bc..ece2635 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -791,6 +791,7 @@ dump_decl (tree t, int flags) /* Else fall through. */ case FIELD_DECL: case PARM_DECL: + case ALIAS_DECL: dump_simple_decl (t, TREE_TYPE (t), flags); break; |
