libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / ucnid-3-utf8.c
blobf8509a64323f58f54815e7ee2bd6029c5a7b02e7
1 /* { dg-do run } */
2 /* { dg-xfail-if "" { powerpc-ibm-aix* } } */
3 /* { dg-skip-if "" { ! ucn } } */
4 /* { dg-options "-std=c99 -g" } */
5 void abort (void);
7 int À = 1;
8 int Á = 2;
9 int  = 3;
10 int whÿ = 4;
11 int aÄbсδe = 5;
13 int main (void)
16 if (À != 1)
17 abort ();
18 if (Á != 2)
19 abort ();
20 if (Â != 3)
21 abort ();
22 if (whÿ != 4)
23 abort ();
24 if (aÄbсδe != 5)
25 abort ();
27 return 0;