mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-17 07:10:25 +08:00
re PR c++/8799 (ICE: Error reporting routines re-entered.)
PR C++/8799 * error.c (dump_expr): Don't ever try to dump a non-existent expression. From-SVN: r59814
This commit is contained in:
parent
33602aec45
commit
8c048a52a4
@ -1,3 +1,9 @@
|
|||||||
|
2002-12-04 Gabriel Dos Reis <gdr@integrable-solutions.net>
|
||||||
|
|
||||||
|
PR C++/8799
|
||||||
|
* error.c (dump_expr): Don't ever try to dump a non-existent
|
||||||
|
expression.
|
||||||
|
|
||||||
2002-12-03 Jason Merrill <jason@redhat.com>
|
2002-12-03 Jason Merrill <jason@redhat.com>
|
||||||
|
|
||||||
* call.c (build_user_type_conversion_1): Don't set ICS_BAD_FLAG on
|
* call.c (build_user_type_conversion_1): Don't set ICS_BAD_FLAG on
|
||||||
|
@ -1424,6 +1424,9 @@ dump_expr (t, flags)
|
|||||||
tree t;
|
tree t;
|
||||||
int flags;
|
int flags;
|
||||||
{
|
{
|
||||||
|
if (t == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
switch (TREE_CODE (t))
|
switch (TREE_CODE (t))
|
||||||
{
|
{
|
||||||
case VAR_DECL:
|
case VAR_DECL:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user