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
2008-03-21 Janne Blomqvist <jb@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr22335-1.c
blob
a2a760bfc964d5c48d6255b993aae9e6651f00bf
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -fdelete-null-pointer-checks" } */
3
int
t
(
int
*
a
)
4
{
5
int
i
;
6
*
a
=
1
;
7
i
=
a
==
0
;
8
return
i
;
9
}
10