[PR c/84293] Unexpected strict-alias warning
[official-gcc.git] / gcc / testsuite / c-c++-common / pr46562.c
blobc6b85748d8497b69fd4138a00a988bfa93bd518b
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-ccp1" } */
4 static const int a[4] = {};
5 int foo(void)
7 int i = 1;
8 const int *p = &a[i];
9 return *p;
12 /* { dg-final { scan-tree-dump "return 0;" "ccp1" } } */