1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
15 lines
207 B
C
15 lines
207 B
C
// RUN: %clang_cc1 -Os -emit-llvm %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);
|
|
}
|