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
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr20922-2.c
blob
88f285d00503797ee561b0dd287582a9240ef662
1
/* { dg-do compile } */
2
/* { dg-options "-fwrapv -fdump-tree-gimple" } */
3
int
f
(
int
i
)
4
{
5
return
(
i
-
2
) >
i
;
6
}
7
8
int
g
(
int
i
)
9
{
10
return
(
i
+
2
) <
i
;
11
}
12
13
int
h
(
double
i
)
14
{
15
return
(
i
+
2.0
) <=
i
;
16
}
17
/* { dg-final { scan-tree-dump-times " = 0" 0 "gimple" } } */