From 4b4455e51cec3f3587f52100ca6f14ef4aa8f7f6 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Mon, 18 Jul 2011 14:22:50 +0000 Subject: [PATCH] gimplify.c (gimplify_expr): Use input_location, not saved_location when building new trees. 2011-07-18 Richard Guenther * gimplify.c (gimplify_expr): Use input_location, not saved_location when building new trees. From-SVN: r176400 --- gcc/ChangeLog | 5 +++++ gcc/gimplify.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5907bf25892..ad53fe14ec7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-07-18 Richard Guenther + + * gimplify.c (gimplify_expr): Use input_location, not saved_location + when building new trees. + 2011-07-18 Richard Guenther * expr.c (expand_expr_real_2): Properly truncate the BIT_NOT_EXPR diff --git a/gcc/gimplify.c b/gcc/gimplify.c index f313352e8a2..d1ce6d3dce8 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -6773,13 +6773,13 @@ gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p, source location of the outer expression. */ tree org_type = TREE_TYPE (*expr_p); *expr_p = gimple_boolify (*expr_p); - *expr_p = build3_loc (saved_location, COND_EXPR, + *expr_p = build3_loc (input_location, COND_EXPR, org_type, *expr_p, fold_convert_loc - (saved_location, + (input_location, org_type, boolean_true_node), fold_convert_loc - (saved_location, + (input_location, org_type, boolean_false_node)); ret = GS_OK; break; @@ -7229,7 +7229,7 @@ gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p, *expr_p = gimple_boolify (*expr_p); if (!useless_type_conversion_p (orig_type, TREE_TYPE (*expr_p))) { - *expr_p = fold_convert_loc (saved_location, orig_type, *expr_p); + *expr_p = fold_convert_loc (input_location, orig_type, *expr_p); ret = GS_OK; break; } -- 2.30.2