blob: 3f40160ed9978bf8e19c1beead1c9563ef2d5bdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Copyright (C) 2001 Free Software Foundation.
by Hans-Peter Nilsson <hp@axis.com> */
/* { dg-do compile } */
/* { dg-options "-O2 -fforce-addr" } */
const char foo[] = "fum";
const struct fi
{
const char *const in;
const char *const out;
const int flags;
} fie[] = {
{"nw", " new", 0},
{"dl", foo, 1}
};
|