diff options
Diffstat (limited to 'gcc/config/c6x/c6x.c')
-rw-r--r-- | gcc/config/c6x/c6x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/c6x/c6x.c b/gcc/config/c6x/c6x.c index 99987346555..aaea6c0c93d 100644 --- a/gcc/config/c6x/c6x.c +++ b/gcc/config/c6x/c6x.c @@ -1177,7 +1177,7 @@ c6x_function_ok_for_sibcall (tree decl, tree exp) /* Not enough information. */ return false; - this_func = cgraph_local_info (current_function_decl); + this_func = cgraph_node::local_info (current_function_decl); return this_func->local; } @@ -2540,7 +2540,7 @@ must_reload_pic_reg_p (void) if (!TARGET_DSBT) return false; - i = cgraph_local_info (current_function_decl); + i = cgraph_node::local_info (current_function_decl); if ((crtl->uses_pic_offset_table || !crtl->is_leaf) && !i->local) return true; |