Skip to content

Commit 3c468b4

Browse files
Paulo MatosPaulo Matos
authored andcommitted
re PR middle-end/58463 (ICE with -fdump-tree-all-all in vector indexed access)
PR middle-end/58463 * gcc.dg/pr58463.c: New test. From-SVN: r202976
1 parent 0d0e2af commit 3c468b4

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

gcc/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2013-09-27 Paulo Matos <[email protected]>
2+
3+
PR middle-end/58463
4+
* gcc.dg/pr58463.c: New test.
5+
16
2013-09-27 Paulo Matos <[email protected]>
27

38
* cfgloop.h (number_of_loops): Fix typo in check for null.

gcc/testsuite/gcc.dg/pr58463.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/* { dg-do compile } */
2+
/* { dg-options "-fdump-tree-ealias-details -O2" } */
3+
4+
typedef struct
5+
{
6+
int data16;
7+
}
8+
list_data;
9+
void
10+
fn1 (list_data * p1)
11+
{
12+
p1->data16 = p1->data16 & 1 & p1->data16 >> 1;
13+
}
14+
15+
/* { dg-final { cleanup-tree-dump "ealias" } } */

0 commit comments

Comments
 (0)