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
In gcc/testsuite/: 2011-03-04 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wstrict-overflow-19.c
blob
daf98b0ce6308d7fdde4f16eb8bfcee65a646b5f
1
/* { dg-do compile } */
2
/* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow" } */
3
4
/* Don't warn about an overflow when threading jumps. We used to get
5
a warning from comparing bounds generated by VRP. */
6
7
int
8
bar
(
int
a
,
int
b
,
int
n
)
9
{
10
if
(
b
>
a
)
11
n
=
a
-
b
;
12
if
(
a
>=
b
)
13
n
=
1
;
14
return
n
;
15
}