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-5.c
blob
6f0f475303213821c47752670084baf53ef2a5d6
1
/* { dg-do run } */
2
/* { dg-skip-if "No dollar in identifiers" { avr-*-* powerpc-ibm-aix* } } */
3
/* { dg-options "-std=c99 -fdollars-in-identifiers -g" } */
4
void
abort
(
void
);
5
6
int
a$
b
(
void
) {
return
1
; }
7
8
int
main
(
void
)
9
{
10
11
if
(
a
\u0024
b
() !=
1
)
12
abort
();
13
14
return
0
;
15
}