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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wstrict-overflow-2.c
blob
2112571cabe4d895df6d1d8cc15d739b5ff46dd6
1
/* { dg-do compile } */
2
/* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=2" } */
3
4
/* Source: Ian Lance Taylor. Based on strict-overflow-1.c. */
5
6
/* We can only simplify the conditional when using strict overflow
7
semantics. */
8
9
int
10
foo
(
int
i
)
11
{
12
return
i
-
5
<
10
;
13
}