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 + + PR tree-optimization/23177 + * tree-ssa-operands.c (get_tmr_operands): Use get_expr_operands + on TMR_TAG. + 2005-08-02 James A. Morrison 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;