[PATCH, bootstrap PR63235] Fix bootstrap.

Kirill Yukhin kirill.yukhin@gmail.com
Wed Sep 24 12:17:00 GMT 2014


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?

--
Thanks, K

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;
 }



More information about the Gcc-patches mailing list