PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / pr67271.c
blob977e25317924aa117b4ca3739105294273f2baf0
1 /* { dg-do compile } */
2 /* { dg-options "-O" } */
3 /* { dg-require-effective-target int32plus } */
5 extern long int labs (long int j);
6 int
7 main ()
9 long *a = (long *)"empty";
10 int i = 1441516387;
11 a[i] = labs (a[i]);
12 return 0;