]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr58463.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr58463.c
CommitLineData
3c468b4c
PM
1/* { dg-do compile } */
2/* { dg-options "-fdump-tree-ealias-details -O2" } */
3
4typedef struct
5{
6 int data16;
7}
8list_data;
9void
10fn1 (list_data * p1)
11{
12 p1->data16 = p1->data16 & 1 & p1->data16 >> 1;
13}
14