On 09/24/2014 04:17 PM, Jan Hubicka wrote:
There's missing DECL_ATTRIBUTES in varpool.c in lookup_attribute call.
Ready for trunk?
OK,
thanks
Honza
Ah, it has been fixed in r215552.
Martin
Martin
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;
}