blob: ece67daae1e7728fa0cbaa4b6d048a294d466258 [file] [log] [blame]
inline int
f (int x)
{
static union
{
int i;
};
int j = i;
i = x;
return j;
}