diff options
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index e8a06ccea67..dbcf20ca2b8 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -282,7 +282,7 @@ replace_loop_annotate () if (!gimple_call_internal_p (stmt) || gimple_call_internal_fn (stmt) != IFN_ANNOTATE) continue; - if ((annot_expr_kind) tree_low_cst (gimple_call_arg (stmt, 1), 0) + if ((annot_expr_kind) tree_to_shwi (gimple_call_arg (stmt, 1)) != annot_expr_ivdep_kind) continue; stmt = gimple_build_assign (gimple_call_lhs (stmt), @@ -307,7 +307,7 @@ replace_loop_annotate () if (!gimple_call_internal_p (stmt) || gimple_call_internal_fn (stmt) != IFN_ANNOTATE) continue; - if ((annot_expr_kind) tree_low_cst (gimple_call_arg (stmt, 1), 0) + if ((annot_expr_kind) tree_to_shwi (gimple_call_arg (stmt, 1)) != annot_expr_ivdep_kind) continue; warning_at (gimple_location (stmt), 0, "ignoring %<GCC ivdep%> " @@ -6273,7 +6273,7 @@ move_stmt_eh_region_tree_nr (tree old_t_nr, struct move_stmt_d *p) { int old_nr, new_nr; - old_nr = tree_low_cst (old_t_nr, 0); + old_nr = tree_to_shwi (old_t_nr); new_nr = move_stmt_eh_region_nr (old_nr, p); return build_int_cst (integer_type_node, new_nr); |