diff options
author | giovannibajo <giovannibajo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-14 02:11:22 +0000 |
---|---|---|
committer | giovannibajo <giovannibajo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-14 02:11:22 +0000 |
commit | d44c682d75bef37618e7c94f48e26633a0a23c02 (patch) | |
tree | f3d446fe4c154d7021645ca0a5b7402d515f7a36 /gcc/cp/error.c | |
parent | b4ce9dedd7e0a7dea32d251e660a885a9fd7836a (diff) | |
download | gcc-d44c682d75bef37618e7c94f48e26633a0a23c02.tar.gz |
PR c++/13927
* error.c (dump_decl) <ALIAS_DECL>: Dump as simple declarations.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77787 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/error.c')
-rw-r--r-- | gcc/cp/error.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cp/error.c b/gcc/cp/error.c index 46500bc3520..ece26355948 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; |