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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr87117-1.c
blob
06d700871be90e6915e7f47a43606c62155c342a
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-inline -fno-tree-dce" } */
3
4
int
a
,
b
,
c
;
5
long
*
d
;
6
void
fn1
()
7
{
8
for
(;
0
<
a
;)
9
a
++;
10
}
11
void
fn3
()
12
{
13
for
(;
c
;
c
++)
14
d
[
c
] =
0
;
15
}
16
void
fn2
()
17
{
18
if
(
b
)
19
fn3
();
20
fn1
();
21
}