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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20060823-1.c
blob
fbce7fe941f206c877a83793ee9002f8f42618fd
1
/* PR middle-end/28683 */
2
3
extern
void
foo
(
int
*);
4
5
struct
A
6
{
7
int
f
;
8
};
9
10
struct
A
*
11
test
(
struct
A
*
r
)
12
{
13
int
*
f
= &
r
->
f
;
14
static int
i
=
0
;
15
if
(!
i
&& !((
void
*)
f
== (
void
*)
r
))
16
foo
(&
i
);
17
return
r
;
18
}