mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 17:30:58 +08:00
re PR c/65228 (ICE: expected tree that contains ‘decl minimal’ structure, have ‘error_mark’ in start_decl)
PR c/65228 * c-decl.c (start_decl): Return NULL_TREE if decl is an error node. * gcc.dg/pr65228.c: New test. From-SVN: r221056
This commit is contained in:
parent
a2a5609b4b
commit
e5165b604c
@ -1,3 +1,8 @@
|
||||
2015-02-27 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c/65228
|
||||
* c-decl.c (start_decl): Return NULL_TREE if decl is an error node.
|
||||
|
||||
2015-02-14 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c/64768
|
||||
|
@ -4460,8 +4460,8 @@ start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
|
||||
decl = grokdeclarator (declarator, declspecs,
|
||||
NORMAL, initialized, NULL, &attributes, &expr, NULL,
|
||||
deprecated_state);
|
||||
if (!decl)
|
||||
return 0;
|
||||
if (!decl || decl == error_mark_node)
|
||||
return NULL_TREE;
|
||||
|
||||
if (expr)
|
||||
add_stmt (fold_convert (void_type_node, expr));
|
||||
|
@ -1,3 +1,8 @@
|
||||
2015-02-27 Marek Polacek <polacek@redhat.com>
|
||||
|
||||
PR c/65228
|
||||
* gcc.dg/pr65228.c: New test.
|
||||
|
||||
2015-02-27 Kai Tietz <ktietz@redhat.com>
|
||||
|
||||
PR c/35330
|
||||
|
11
gcc/testsuite/gcc.dg/pr65228.c
Normal file
11
gcc/testsuite/gcc.dg/pr65228.c
Normal file
@ -0,0 +1,11 @@
|
||||
/* PR c/65228 */
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "" } */
|
||||
|
||||
__auto_type a = b; /* { dg-error "undeclared" } */
|
||||
|
||||
void
|
||||
f (void)
|
||||
{
|
||||
__auto_type c = d; /* { dg-error "undeclared" } */
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user