diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2008-04-18 18:18:53 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2008-04-18 18:18:53 +0000 |
commit | ed3444e90132848d00d21f901ea1626d3af8b499 (patch) | |
tree | 98d859ebb844e06678e3fb9aac38916946385743 /gcc/gimplify.c | |
parent | 893174face71070f6f16f3246256655a2fa4c195 (diff) | |
download | gcc-ed3444e90132848d00d21f901ea1626d3af8b499.zip gcc-ed3444e90132848d00d21f901ea1626d3af8b499.tar.gz gcc-ed3444e90132848d00d21f901ea1626d3af8b499.tar.bz2 |
gimplify.c (gimplify_modify_expr_rhs): Gimplify the LHS using the is_gimple_lvalue predicate instead of is_gimple_min_lval.
* gimplify.c (gimplify_modify_expr_rhs) <COND_EXPR>: Gimplify the LHS
using the is_gimple_lvalue predicate instead of is_gimple_min_lval.
From-SVN: r134442
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index cc9fd15..52f63c1 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -3636,7 +3636,7 @@ gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p, tree result = *to_p; ret = gimplify_expr (&result, pre_p, post_p, - is_gimple_min_lval, fb_lvalue); + is_gimple_lvalue, fb_lvalue); if (ret != GS_ERROR) ret = GS_OK; |