1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Test for PR1641.

llvm-svn: 41762
This commit is contained in:
Bill Wendling 2007-09-07 08:30:09 +00:00
parent 8e6c39d961
commit 538f8f9d7f

View File

@ -0,0 +1,14 @@
// 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);
}