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 tree-optimization/81384 - built-in form of strnlen missing
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr65216.c
blob
0714d8ceebb30e457eda517b4064f4306797e50e
1
/* PR tree-optimization/65216 */
2
3
int
a
,
b
=
62
,
e
;
4
volatile
int
c
,
d
;
5
6
int
7
main
()
8
{
9
int
f
=
0
;
10
for
(
a
=
0
;
a
<
2
;
a
++)
11
{
12
b
&= (
8
^
f
) &
1
;
13
for
(
e
=
0
;
e
<
6
;
e
++)
14
if
(
c
)
15
f
=
d
;
16
}
17
if
(
b
!=
0
)
18
__builtin_abort
();
19
return
0
;
20
}