blob: be031c05b1fa41c2f1caf9d96adffc62bc032b13 [file] [log] [blame]
/* PR target/61599 */
/* { dg-do compile { target lp64 } } */
/* { dg-options "-mcmodel=medium -fdata-sections" } */
/* With -mcmodel=medium, all the arrays will be treated as large data. */
extern char a[];
extern char b[];
extern char c[];
int bar()
{
return a[2] + b[16] + c[256];
}