diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-08-02 11:46:44 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-08-02 11:46:44 +0000 |
commit | 01d9465684a36aaa516bea1c33f4dfaa9c83a20c (patch) | |
tree | 716cc9d70a2764a84225743bfa035bac5c62bfff /gcc | |
parent | 1b5523b595b44751831e4030bb1dab07cf3eced8 (diff) | |
download | ppe42-gcc-01d9465684a36aaa516bea1c33f4dfaa9c83a20c.tar.gz ppe42-gcc-01d9465684a36aaa516bea1c33f4dfaa9c83a20c.zip |
2005-08-02 Richard Guenther <rguenther@suse.de>
PR tree-optimization/23177
* tree-ssa-operands.c (get_tmr_operands): Use get_expr_operands
on TMR_TAG.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102654 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/tree-ssa-operands.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 430e47441b7..5127e439ac8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-08-02 Richard Guenther <rguenther@suse.de> + + PR tree-optimization/23177 + * tree-ssa-operands.c (get_tmr_operands): Use get_expr_operands + on TMR_TAG. + 2005-08-02 James A. Morrison <phython@gcc.gnu.org> PR tree-optimization/23129 diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 9fa85ad2640..0af19955533 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -1698,7 +1698,7 @@ get_tmr_operands (tree stmt, tree expr, int flags) } if (tag) - add_stmt_operand (&tag, stmt_ann (stmt), flags); + get_expr_operands (stmt, &tag, flags); else /* Something weird, so ensure that we will be careful. */ stmt_ann (stmt)->has_volatile_ops = true; |