mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
538f8f9d7f
llvm-svn: 41762
15 lines
202 B
C
15 lines
202 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 = 'vcgt';
|
|
struct A a = { vcgt };
|
|
bar(&a);
|
|
}
|