PR bootstrap/63235
gcc/
* varpool.c (varpool_node::add): Pass decl attributes
to lookup_attribute.
From-SVN: r215552
+2014-09-24 Kirill Yukhin <kirill.yukhin@intel.com>
+
+ PR bootstrap/63235
+ * varpool.c (varpool_node::add): Pass decl attributes
+ to lookup_attribute.
+
2014-09-24 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/63316
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;
}