diff --git a/test/FrontendC/2007-09-05-ConstCtor.c b/test/FrontendC/2007-09-05-ConstCtor.c index 6d9fbd5c14b..8e0e9945ffa 100644 --- a/test/FrontendC/2007-09-05-ConstCtor.c +++ b/test/FrontendC/2007-09-05-ConstCtor.c @@ -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); }