blob: 138b818875604f7707328022435d06fe99822325 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -Os -emit-llvm %s -o /dev/null
2// PR1641
3
4struct A {
5 unsigned long l;
6};
7
8void bar(struct A *a);
9
10void bork() {
11 const unsigned long vcgt = 1234;
12 struct A a = { vcgt };
13 bar(&a);
14}