re PR tree-optimization/23177 (internal compiler error with -O option)

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.

From-SVN: r102654
This commit is contained in:
Richard Guenther 2005-08-02 11:46:44 +00:00 committed by Richard Biener
parent 08303d5bb4
commit e63c84d8ad
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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;