re PR tree-optimization/42719 ("-fcompare-debug failure" with "-O2 -ftracer")
PR tree-optimization/42719 * tree-outof-ssa.c (trivially_conflicts_p): Don't consider debug stmt uses. * gcc.dg/pr42719.c: New test. From-SVN: r156038
This commit is contained in:
parent
2178b0f93a
commit
d6600130fa
@ -1,5 +1,9 @@
|
||||
2010-01-19 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/42719
|
||||
* tree-outof-ssa.c (trivially_conflicts_p): Don't consider debug
|
||||
stmt uses.
|
||||
|
||||
PR debug/42728
|
||||
* fwprop.c (all_uses_available_at): Return false if def_set dest
|
||||
is a REG that is used in def_insn.
|
||||
|
@ -1,5 +1,8 @@
|
||||
2010-01-19 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/42719
|
||||
* gcc.dg/pr42719.c: New test.
|
||||
|
||||
PR debug/42728
|
||||
* gcc.dg/pr42728.c: New test.
|
||||
|
||||
|
14
gcc/testsuite/gcc.dg/pr42719.c
Normal file
14
gcc/testsuite/gcc.dg/pr42719.c
Normal file
@ -0,0 +1,14 @@
|
||||
/* PR tree-optimization/42719 */
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-O2 -ftracer -fcompare-debug" } */
|
||||
|
||||
int *v;
|
||||
|
||||
void
|
||||
foo (int a)
|
||||
{
|
||||
int i, j;
|
||||
for (j = i = a; i != -1; j = i, i = v[i])
|
||||
;
|
||||
v[j] = v[a];
|
||||
}
|
@ -956,6 +956,8 @@ trivially_conflicts_p (basic_block bb, tree result, tree arg)
|
||||
FOR_EACH_IMM_USE_FAST (use, imm_iter, result)
|
||||
{
|
||||
gimple use_stmt = USE_STMT (use);
|
||||
if (is_gimple_debug (use_stmt))
|
||||
continue;
|
||||
/* Now, if there's a use of RESULT that lies outside this basic block,
|
||||
then there surely is a conflict with ARG. */
|
||||
if (gimple_bb (use_stmt) != bb)
|
||||
|
Loading…
Reference in New Issue
Block a user