Commit 79c28203 by Alexandre Oliva Committed by Alexandre Oliva

c-decl.c (duplicate_decls): Do not call make_var_volatile() in case of invalid…

c-decl.c (duplicate_decls): Do not call make_var_volatile() in case of invalid volatile re-declaration.

* c-decl.c (duplicate_decls): Do not call make_var_volatile() in
case of invalid volatile re-declaration.

From-SVN: r35119
parent a306451c
2000-07-18 Alexandre Oliva <aoliva@redhat.com>
* c-decl.c (duplicate_decls): Do not call make_var_volatile() in
case of invalid volatile re-declaration.
2000-07-18 Jakub Jelinek <jakub@redhat.com>
* calls.c (store_arg): Return non-zero if sibcall_failure is
......
......@@ -1843,7 +1843,14 @@ duplicate_decls (newdecl, olddecl, different_binding_level)
if (TREE_THIS_VOLATILE (newdecl))
{
TREE_THIS_VOLATILE (write_olddecl) = 1;
if (TREE_CODE (newdecl) == VAR_DECL)
if (TREE_CODE (newdecl) == VAR_DECL
/* If an automatic variable is re-declared in the same
function scope, but the old declaration was not
volatile, make_var_volatile() would crash because the
variable would have been assigned to a pseudo, not a
MEM. Since this duplicate declaration is invalid
anyway, we just skip the call. */
&& errmsg == 0)
make_var_volatile (newdecl);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment