mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
873cf9817f
llvm-svn: 52528
15 lines
200 B
C
15 lines
200 B
C
// RUN: %llvmgcc -xc -Os -c %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);
|
|
}
|