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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr97360-2.c
blob
48aebf1b100c41427d2fda6a8a4cae78cd4afc2a
1
/* { dg-do compile } */
2
/* { dg-options "-O2 " } */
3
4
void
*
a
;
5
void
*
b
(
void
);
6
void
*
e
(
void
);
7
8
void
*
9
c
() {
10
void
*
d
;
11
if
(
d
==
b
&&
e
())
12
d
=
a
;
13
return
d
;
14
}