Merged r158704 through r158906 into branch.
[official-gcc.git] / gcc / testsuite / gcc.dg / lto / const-uniq_0.c
blob746167c6517c1b8ca2f225d14b0f7e689855e020
1 /* The 3 constant initializers should be uniquized. */
3 /* { dg-lto-do run } */
4 /* { dg-lto-options {{-Os -flto} {-Os -fwhopr} } } */
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];