[PATCH, bootstrap PR63235] Fix bootstrap.

Jakub Jelinek jakub@redhat.com
Wed Sep 24 12:24:00 GMT 2014


On Wed, Sep 24, 2014 at 04:16:50PM +0400, Kirill Yukhin wrote:
> Hello,
> Patch in the bottom fixes bootstrap
> (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63235)
> 
> gcc/
> 	* varpool.c (varpool_node::add): Pass decl attributes
> 	to lookup_attribute.
> 
> Is it ok for trunk?

Ok, thanks.

> diff --git a/gcc/varpool.c b/gcc/varpool.c
> index 8001c93..3761f14 100644
> --- a/gcc/varpool.c
> +++ b/gcc/varpool.c
> @@ -449,7 +449,7 @@ varpool_node::add (tree decl)
>    symtab->call_varpool_insertion_hooks (node);
>    if (node->externally_visible_p ())
>      node->externally_visible = true;
> -  if (lookup_attribute ("no_reorder", decl))
> +  if (lookup_attribute ("no_reorder", DECL_ATTRIBUTES (decl)))
>      node->no_reorder = 1;
>  }

	Jakub



More information about the Gcc-patches mailing list