diff options
Diffstat (limited to 'gcc/multiple_target.c')
-rw-r--r-- | gcc/multiple_target.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/multiple_target.c b/gcc/multiple_target.c index 968c8cf..19dcfc9 100644 --- a/gcc/multiple_target.c +++ b/gcc/multiple_target.c @@ -429,7 +429,7 @@ expand_target_clones (struct cgraph_node *node, bool definition) attributes); if (new_node == NULL) return false; - new_node->local.local = false; + new_node->local = false; XDELETEVEC (suffix); decl2_v = new_node->function_version (); @@ -457,7 +457,7 @@ expand_target_clones (struct cgraph_node *node, bool definition) tree attributes = make_attribute ("target", "default", DECL_ATTRIBUTES (node->decl)); DECL_ATTRIBUTES (node->decl) = attributes; - node->local.local = false; + node->local = false; return true; } |