1/* PR target/25254 */
2/* { dg-do compile } */
3/* { dg-require-effective-target lp64 } */
4/* { dg-options "-mcmodel=medium -mlarge-data-threshold=1" } */
5
6const struct { int i; int j; } c = { 2, 6 };
7
8const char *
9foo (void)
10{
11  return "OK";
12}
13