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
hppa: Fix typos in 32-bit SFmode peephole2 patterns
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr107505.c
blob
01270eac91ccfd7dec9303d8da21c0a87798833d
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-guess-branch-probability" } */
3
4
int
n
;
5
6
void
7
bar
(
void
);
8
9
__attribute__
((
noinline
,
returns_twice
))
int
10
zero
(
void
)
11
{
12
return
0
;
13
}
14
15
void
16
foo
(
void
)
17
{
18
int
a
=
zero
();
19
20
for
(
n
=
0
;
n
<
2
; ++
n
)
21
{
22
}
23
24
if
(
a
)
25
bar
();
26
}