blob: 1f6a2344f04ff70677bfbe093fc28261b2c0c1f9 [file] [log] [blame]
// { dg-do compile }
struct Region {
int storage[4];
int count;
};
static inline Region subtract(int lhs)
{
Region reg;
int* storage = reg.storage;
int* storage2 = reg.storage;
if (lhs > 0)
storage++, storage2--;
reg.count = storage - reg.storage + storage2 - reg.storage;
return reg;
}
void bar(int a)
{
const Region copyBack(subtract(a));
}