diff options
author | Richard Guenther <rguenther@suse.de> | 2005-08-02 11:46:44 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2005-08-02 11:46:44 +0000 |
commit | e63c84d8ad3fd5eea5639cbcbfa31184c724ae83 (patch) | |
tree | 716cc9d70a2764a84225743bfa035bac5c62bfff /gcc/tree-ssa-operands.c | |
parent | 08303d5bb44c250c178aeb53b70027a9ad188bb8 (diff) | |
download | gcc-e63c84d8ad3fd5eea5639cbcbfa31184c724ae83.zip gcc-e63c84d8ad3fd5eea5639cbcbfa31184c724ae83.tar.gz gcc-e63c84d8ad3fd5eea5639cbcbfa31184c724ae83.tar.bz2 |
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
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |