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
/
pr56756.c
blob
470014d266075cc14b0ac4e1b45f7440809f1a6f
1
/* { dg-do compile } */
2
3
int
a
, *
b
;
4
5
void
f
(
void
)
6
{
7
if
(
a
)
8
{
9
int
k
;
10
11
for
(
a
=
0
;
a
<
1
;
a
++)
12
{
13
int
**
q
;
14
f
();
15
16
for
(; **
q
; ++**
q
)
17
lbl
:
18
if
(
a
)
19
{
20
a
=
0
;
21
goto
lbl
;
22
}
23
24
b
= &
k
;
25
}
26
}
27
goto
lbl
;
28
}