Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / lto / const-uniq_0.c
blob1bbc7f45f8d42aef706a006c66132003745cb01b
1 /* The 3 constant initializers should be uniquized. */
3 /* { dg-lto-do run } */
4 /* { dg-lto-options {{-Os -flto -flto-partition=none} {-Os -flto -flto-partition=1to1} } } */
6 int lookup1 (int i)
8 int a[] = { 0, 1, 2, 3, 4, 5, 6, 7 };
9 return a[i];
12 int lookup2 (int i)
14 int a[] = { 0, 1, 2, 3, 4, 5, 6, 7 };
15 return a[i+1];