1 /* PR middle-end/92231 */
2 
3 extern int bar (void);
4 
5 int
foo(void)6 foo (void)
7 {
8   return (&bar + 4096) ();
9 }
10