summaryrefslogtreecommitdiff
path: root/gcc/gimplify.c
diff options
context:
space:
mode:
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-18 18:18:53 +0000
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-18 18:18:53 +0000
commit6590374032917a56a1deeba67ec41eba8352c448 (patch)
tree98d859ebb844e06678e3fb9aac38916946385743 /gcc/gimplify.c
parent662dbd74b585e51f1122156511fab4016bc15fe7 (diff)
downloadgcc-6590374032917a56a1deeba67ec41eba8352c448.tar.gz
* gimplify.c (gimplify_modify_expr_rhs) <COND_EXPR>: Gimplify the LHS
using the is_gimple_lvalue predicate instead of is_gimple_min_lval. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134442 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r--gcc/gimplify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c
index cc9fd1505ec..52f63c1fc0d 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;