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
2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr35400.c
blob
285dc72e3a3bb19b3a5a29c4240307ea7cc2ad50
1
/* { dg-do compile } */
2
/* { dg-options "-Wtype-limits" } */
3
4
struct
A
5
{
6
struct
A
*
p
;
7
};
8
9
int
foo
(
const struct
A
*
q
)
10
{
11
return
q
->
p
==
q
;
12
}
13
14
void
bar
(
int
);
15
16
void
baz
()
17
{
18
struct
A a
;
19
20
while
(
foo
(&
a
))
21
bar
(
foo
(&
a
));
22
}