* error.c (dump_decl): For enum tags, output the tag, not its value.

From-SVN: r17381
This commit is contained in:
Bruno Haible 1998-01-16 23:55:44 +00:00 committed by Jason Merrill
parent 5d483f6374
commit 224c649b80
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Fri Jan 16 11:40:50 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de>
* error.c (dump_decl): For enum tags, output the tag, not its value.
1998-01-13 Brendan Kehoe <brendan@cygnus.com>
* decl.c (init_decl_processing): Only call init_rtti_processing

View File

@ -810,6 +810,8 @@ dump_decl (t, v)
|| (DECL_INITIAL (t) &&
TREE_CODE (DECL_INITIAL (t)) == TEMPLATE_CONST_PARM))
goto general;
else if (DECL_NAME (t))
dump_decl (DECL_NAME (t), v);
else if (DECL_INITIAL (t))
dump_expr (DECL_INITIAL (t), 0);
else