repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ucnid-3-utf8.c
blob
f8509a64323f58f54815e7ee2bd6029c5a7b02e7
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
);
6
7
int
À
=
1
;
8
int
Á
=
2
;
9
int
Â
=
3
;
10
int
whÿ
=
4
;
11
int
aÄbсδe
=
5
;
12
13
int
main
(
void
)
14
{
15
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
();
26
27
return
0
;
28
}