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.dg
/
tree-ssa
/
pr21090.c
blob
8e32e4217440937f682ec7c574066cca402e3135
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-vrp1" } */
3
4
int
g
,
h
;
5
6
int
7
foo
(
int
a
)
8
{
9
int
*
p
;
10
11
if
(
a
)
12
p
= &
g
;
13
else
14
p
= &
h
;
15
16
if
(
p
!=
0
)
17
return
1
;
18
else
19
return
0
;
20
}
21
22
/* { dg-final { scan-tree-dump-times "Folding predicate.*to 1" 1 "vrp1" } } */
23
/* { dg-final { cleanup-tree-dump "vrp1" } } */