mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 05:20:26 +08:00
re PR tree-optimization/26672 (ICE in op_iter_init, triggered by printf->puts optimization)
2006-03-14 Richard Guenther <rguenther@suse.de> PR tree-optimization/26672 * tree-ssa-propagate.c (set_rhs): Don't walk DEFs if not in SSA form. * gcc.dg/torture/pr26672.c: New testcase. From-SVN: r112050
This commit is contained in:
parent
6971d714fe
commit
b5564e87d4
@ -1,3 +1,9 @@
|
||||
2006-03-14 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/26672
|
||||
* tree-ssa-propagate.c (set_rhs): Don't walk DEFs if not in
|
||||
SSA form.
|
||||
|
||||
2006-03-14 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/26667
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-03-14 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/26672
|
||||
* gcc.dg/torture/pr26672.c: New testcase.
|
||||
|
||||
2006-03-14 Joseph S. Myers <joseph@codesourcery.com>
|
||||
|
||||
* gcc.target/powerpc/405-dlmzb-strlen-1.c,
|
||||
|
8
gcc/testsuite/gcc.dg/torture/pr26672.c
Normal file
8
gcc/testsuite/gcc.dg/torture/pr26672.c
Normal file
@ -0,0 +1,8 @@
|
||||
/* { dg-do compile } */
|
||||
|
||||
int printf(const char *format, ...);
|
||||
extern const char help_string[];
|
||||
void app_opts(void) {
|
||||
printf("%s", help_string);
|
||||
}
|
||||
const char help_string[] = "foo\n";
|
@ -632,7 +632,8 @@ set_rhs (tree *stmt_p, tree expr)
|
||||
*stmt_p = TREE_SIDE_EFFECTS (expr) ? expr : build_empty_stmt ();
|
||||
(*stmt_p)->common.ann = (tree_ann_t) ann;
|
||||
|
||||
if (TREE_SIDE_EFFECTS (expr))
|
||||
if (in_ssa_p
|
||||
&& TREE_SIDE_EFFECTS (expr))
|
||||
{
|
||||
/* Fix all the SSA_NAMEs created by *STMT_P to point to its new
|
||||
replacement. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user