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
/
pr70780.c
blob
2f7a5cbea0660607ec2fadf421511d54a7848644
1
/* { dg-do run } */
2
3
int
a
,
b
,
c
, *
d
,
e
;
4
5
static int
6
fn1
()
7
{
8
if
(
a
)
9
goto
l1
;
10
l2
:
while
(
b
)
11
if
(*
d
)
12
return
c
;
13
for
(
e
=
0
;
e
;
e
++)
14
{
15
goto
l2
;
16
l1
:;
17
}
18
return
0
;
19
}
20
21
int
22
main
()
23
{
24
fn1
();
25
return
0
;
26
}