blob: adae4a69b1035356cfc6813eba3b14653a80991d [file] [log] [blame]
// RUN: %llvmgcc -xc -Os -S %s -o /dev/null
// PR1641
struct A {
unsigned long l;
};
void bar(struct A *a);
void bork() {
const unsigned long vcgt = 1234;
struct A a = { vcgt };
bar(&a);
}