blob: ea8718f763b15e8c955eca47ea136fb2a6437f4e [file] [log] [blame]
struct s {
double d;
} sd;
struct s g () __attribute__ ((const));
struct s
g ()
{
return sd;
}
f ()
{
g ();
}