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
/
pr81455.c
blob
8ab88639ee83a62ca667f1698266281c79559049
1
/* { dg-do compile } */
2
/* { dg-options "-O -funswitch-loops" } */
3
4
void
5
jh
(
unsigned int
aw
,
int
sn
)
6
{
7
int
xs
;
8
9
for
(
xs
=
0
;
xs
<
1
; ++
xs
)
10
aw
&=
1
;
11
12
while
(
aw
<
1
|| ++
sn
<
1
)
13
{
14
}
15
}