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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ipa
/
pr98222.c
blob
92e857c2048c920ed5fe46dbbe333f99e75e3f70
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
int
a
,
b
, *
c
;
5
6
int
f
(
int
j
,
int
k
) {
7
b
=
k
/
j
;
8
if
(
a
)
9
f
(
0
,
0
);
10
*
c
=
f
(
b
&
a
,
0
);
11
return
0
;
12
}
13
14
int
main
() {
15
if
(
a
)
16
while
(
1
)
17
f
(
0
,
0
);
18
return
0
;
19
}