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
PR middle-end/27945
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ucnid-3.c
blob
1f3481bf37691a8c820d9874a9b1b993815652be
1
/* { dg-do run } */
2
/* { dg-xfail-if "" { powerpc-ibm-aix* *-*-solaris2.* } { "*" } { "" } } */
3
/* { dg-options "-std=c99 -fextended-identifiers" } */
4
void
abort
(
void
);
5
6
int
\u00C0
=
1
;
7
int
\u00C1
=
2
;
8
int
\U000000C2
=
3
;
9
int
wh
\u00ff
=
4
;
10
int
a
\u00c4
b
\u0441
\U000003b4e
=
5
;
11
12
int
main
(
void
)
13
{
14
15
if
(
\u00C0
!=
1
)
16
abort
();
17
if
(
\u00c1
!=
2
)
18
abort
();
19
if
(
\u00C2
!=
3
)
20
abort
();
21
if
(
wh
\u00ff
!=
4
)
22
abort
();
23
if
(
a
\u00c4
b
\u0441
\U000003b4e
!=
5
)
24
abort
();
25
26
return
0
;
27
}