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