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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr83585.c
blob
2a9cf252eda17d03c273278857550ef2630773f1
1
/* PR debug/83585 */
2
/* { dg-do assemble } */
3
/* { dg-options "-std=gnu89 -O2 -g -fno-tree-dce -fno-guess-branch-probability" } */
4
5
int
6
foo
(
int
x
)
7
{
8
int
a
,
b
;
9
for
(
a
=
0
;
a
<
2
; ++
a
)
10
if
(
x
!=
0
)
11
{
12
for
(
b
=
0
;
b
<
2
; ++
b
)
13
;
14
return
0
;
15
}
16
17
return
;
18
}