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
/
torture
/
pr80181.c
blob
896ca4fe0bda3de264908dc6c00e1d29f8333c78
1
/* { dg-do compile } */
2
3
int
4
nr
(
void
)
5
{
6
}
7
8
void
9
it
(
int
dl
)
10
{
11
int
vp
=
0
;
12
13
for
(;;)
14
{
15
dl
=
vp
^
nr
();
16
dl
^=
vp
;
17
vp
=
1
;
18
}
19
}