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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20070419-1.c
blob
ea23bf8bdc0c5d381b70c5b55a724043308a9d66
1
/* PR tree-optimization/31632 */
2
3
struct
S
4
{
5
long int
l
;
6
void
*
m
;
7
};
8
9
int
10
foo
(
struct
S
*
x
)
11
{
12
unsigned long
a
;
13
a
=
x
->
l
;
14
if
(
a
<= ((
void
*)
0
))
15
x
->
m
=
0
;
16
return
0
;
17
}