Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / lto / pr56297_0.c
1 /* { dg-lto-do link } */
2 /* { dg-lto-options { { -flto -fno-common } } } */
3
4 #if __x86_64__ || __i386__
5 register int i asm("esp");
6 #else
7 extern int i;
8 #endif
9
10 int main(void)
11 {
12   return i;
13 }