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
Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr56181.c
blob
c382b29c43bd713ffabc7d60805b26ea70264a79
1
/* { dg-do compile } */
2
/* { dg-options "-ftracer" } */
3
4
int
a
,
b
;
5
6
void
f
(
void
)
7
{
8
if
(
a
++)
9
{
10
for
(
a
=
0
;
a
<
1
;)
11
{
12
for
(
b
=
0
;
b
<
1
;
b
++)
13
{
14
while
(
a
++ <
0
);
15
lbl
:
16
;
17
}
18
19
if
(
a
)
20
goto
lbl
;
21
}
22
23
goto
lbl
;
24
}
25
}