From e63c84d8ad3fd5eea5639cbcbfa31184c724ae83 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Tue, 2 Aug 2005 11:46:44 +0000 Subject: re PR tree-optimization/23177 (internal compiler error with -O option) 2005-08-02 Richard Guenther PR tree-optimization/23177 * tree-ssa-operands.c (get_tmr_operands): Use get_expr_operands on TMR_TAG. From-SVN: r102654 --- gcc/ChangeLog | 6 ++++++ gcc/tree-ssa-operands.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 430e474..5127e43 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 9fa85ad..0af1995 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; -- cgit v1.1