aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/FrontendC/2007-09-05-ConstCtor.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/FrontendC/2007-09-05-ConstCtor.c b/test/FrontendC/2007-09-05-ConstCtor.c
index 6d9fbd5..8e0e994 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);
}