1/* { dg-do compile } */
2/* { dg-options "-O -mshort" } */
3
4extern int r[];
5
6int *fn(int i)
7{
8	return &r[i];
9}
10
11