Fix a warning.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52528 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-06-20 05:31:04 +00:00
parent ec91ccba3c
commit 3e64ff6832

View File

@ -1,7 +1,5 @@
// RUN: %llvmgcc -xc -Os -c %s -o /dev/null
// PR1641
// XFAIL: *
// See PR2452
struct A {
unsigned long l;
@ -10,7 +8,7 @@ struct A {
void bar(struct A *a);
void bork() {
const unsigned long vcgt = 'vcgt';
const unsigned long vcgt = 1234;
struct A a = { vcgt };
bar(&a);
}