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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr83072-2.c
blob
f495f2582c437e411d1ecdfe002e526a6c20634e
1
/* { dg-do compile} */
2
/* { dg-options "-O2 -fdump-tree-evrp-details" } */
3
4
int
f1
(
int
a
,
int
b
,
int
c
){
5
if
(
c
==
0
)
__builtin_unreachable
();
6
a
*=
c
;
7
b
*=
c
;
8
return
a
==
b
;
9
}
10
11
int
f2
(
int
a
,
int
b
,
int
c
){
12
c
|=
1
;
13
a
*=
c
;
14
b
*=
c
;
15
return
a
==
b
;
16
}
17
18
/* { dg-final { scan-tree-dump-times "gimple_simplified to" 2 "evrp" } } */