XFAIL some tests that became failing due to the extra error reporting recently. PR...
[oota-llvm.git] / test / FrontendC / 2007-09-05-ConstCtor.c
1 // RUN: %llvmgcc -xc -Os -c %s -o /dev/null
2 // PR1641
3 // XFAIL: *
4 // See PR2425
5
6 struct A {
7   unsigned long l;
8 };
9
10 void bar(struct A *a);
11
12 void bork() {
13   const unsigned long vcgt = 'vcgt';
14   struct A a = { vcgt };
15   bar(&a);
16 }