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
/
pr97806.c
blob
9ec3299c0b13120345afa886f14130f6d6141429
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
int
b
;
5
long
c
;
6
int
g
();
7
void
h
(
long
*);
8
void
i
(
long
*);
9
void
d
() {
10
int
e
,
f
=
b
-
e
;
11
if
(
g
())
12
h
(&
c
+
f
);
13
else
14
i
(&
c
+
f
);
15
__builtin_memset
(
0
,
0
,
f
*
8
);
16
}