diff options
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 92e4e5e..857ea30 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -1600,7 +1600,8 @@ setup_incoming_promotions (rtx_insn *first) function lie within the current compilation unit. (This does take into account the exporting of a function via taking its address, and so forth.) */ - strictly_local = cgraph_node::local_info (current_function_decl)->local; + strictly_local + = cgraph_node::local_info_node (current_function_decl)->local; /* The mode and signedness of the argument before any promotions happen (equal to the mode of the pseudo holding it at that stage). */ |