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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr66894.c
blob
b54494002b644eab1e4d7578a9515f6bf218eb0c
1
/* { dg-do run } */
2
3
short
a
,
b
;
4
5
int
6
main
()
7
{
8
for
(;
a
!=
1
;
a
+=
3
)
9
{
10
int
c
=
0
;
11
for
(;
c
<
2
;
c
++)
12
if
(
a
)
13
{
14
char
d
=
a
;
15
b
=
d
?
1
/
d
:
0
;
16
}
17
else
18
break
;
19
}
20
return
0
;
21
}