Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / ucnid-2-utf8.c
blob70f9464638cca79bc10456d8332ab723ae46cb76
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 static int À = 1;
8 static int Á = 2;
9 static int  = 3;
10 static int whÿ = 4;
11 static 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;