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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
phi-opt-6.c
blob
780530d1e4233023b9bb7112aacd86253e13b8fe
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-phiopt1" } */
3
4
struct
C
{
int
i
; };
5
int
*
g
(
struct
C
*
p
)
6
{
7
if
(
p
)
8
return
&
p
->
i
;
9
return
(
int
*)
0
;
10
}
11
12
/* { dg-final { scan-tree-dump-not "if" "phiopt1" } } */