mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 22:01:27 +08:00
re PR debug/46561 (-fcompare-debug failure (length) with -O2 -ftree-vectorize -ftree-parallelize-loops)
PR debug/46561 * tree-parloops.c (try_create_redunction_list): Ignore debug stmts when looking for immediate uses. * gcc.dg/autopar/pr46561.c: New test. From-SVN: r166975
This commit is contained in:
parent
8304847453
commit
4942af9b83
@ -1,5 +1,9 @@
|
||||
2010-11-20 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR debug/46561
|
||||
* tree-parloops.c (try_create_redunction_list): Ignore debug stmts
|
||||
when looking for immediate uses.
|
||||
|
||||
PR tree-optimization/45830
|
||||
* stmt.c (expand_switch_using_bit_tests_p): New function.
|
||||
(expand_case): Use it.
|
||||
|
@ -1,5 +1,8 @@
|
||||
2010-11-20 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR debug/46561
|
||||
* gcc.dg/autopar/pr46561.c: New test.
|
||||
|
||||
PR c++/46538
|
||||
* g++.dg/other/error34.C: New test.
|
||||
|
||||
|
17
gcc/testsuite/gcc.dg/autopar/pr46561.c
Normal file
17
gcc/testsuite/gcc.dg/autopar/pr46561.c
Normal file
@ -0,0 +1,17 @@
|
||||
/* PR debug/46561 */
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-O2 -ftree-vectorize -ftree-parallelize-loops=2 -fcompare-debug" } */
|
||||
|
||||
extern void abort (void);
|
||||
|
||||
void foo (char *c)
|
||||
{
|
||||
int i;
|
||||
unsigned x = 0;
|
||||
{
|
||||
for (i = 0; i < 64; i += 4)
|
||||
x = x | *((unsigned *) (&c[i]));
|
||||
if (x)
|
||||
abort ();
|
||||
}
|
||||
}
|
@ -1870,7 +1870,8 @@ try_create_reduction_list (loop_p loop, htab_t reduction_list)
|
||||
reduc_phi = NULL;
|
||||
FOR_EACH_IMM_USE_FAST (use_p, imm_iter, val)
|
||||
{
|
||||
if (flow_bb_inside_loop_p (loop, gimple_bb (USE_STMT (use_p))))
|
||||
if (!gimple_debug_bind_p (USE_STMT (use_p))
|
||||
&& flow_bb_inside_loop_p (loop, gimple_bb (USE_STMT (use_p))))
|
||||
{
|
||||
reduc_phi = USE_STMT (use_p);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user