diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ipa-modref.c | 3 | ||||
-rw-r--r-- | gcc/tree-inline.c | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gcc/ipa-modref.c b/gcc/ipa-modref.c index 6e7788e..6d49cc1 100644 --- a/gcc/ipa-modref.c +++ b/gcc/ipa-modref.c @@ -2125,7 +2125,8 @@ analyze_function (function *f, bool ipa) FOR_EACH_BB_FN (bb, f) { gimple_stmt_iterator si; - for (si = gsi_after_labels (bb); !gsi_end_p (si); gsi_next (&si)) + for (si = gsi_start_nondebug_after_labels_bb (bb); + !gsi_end_p (si); gsi_next_nondebug (&si)) { if (!analyze_stmt (summary, summary_lto, gsi_stmt (si), ipa, &recursive_calls) diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 5955ff1..5e50e80 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -4436,8 +4436,8 @@ estimate_num_insns (gimple *stmt, eni_weights *weights) /* Do not special case builtins where we see the body. This just confuse inliner. */ struct cgraph_node *node; - if (!(node = cgraph_node::get (decl)) - || node->definition) + if ((node = cgraph_node::get (decl)) + && node->definition) ; /* For buitins that are likely expanded to nothing or inlined do not account operand costs. */ |