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