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
/
pr109327.c
blob
827b26f148ebb6f6d52b58a1c1a43dd8c35ce1a3
1
/* { dg-do compile } */
2
/* { dg-options "-O -fno-tree-ccp" } */
3
4
int
a
;
5
void
b
(
int
c
) {}
6
int
main
()
7
{
8
int
d
=
0
, *
e
= &
a
;
9
if
(
d
) {
10
int
*
f
=
e
;
11
while
(
a
)
12
b
(
e
!=
f
);
13
}
14
return
0
;
15
}