Sign in
chromium
/
chromiumos
/
third_party
/
gcc
/
refs/heads/stabilize-R33-4982.B
/
.
/
gcc
/
testsuite
/
gcc.dg
/
Wstrict-overflow-8.c
blob: 566729fe308874feb0315851e4f4ad1baf72b8cb [
file
] [
log
] [
blame
] [
edit
]
/* { dg-do compile } */
/* { dg-options "-fstrict-overflow -O2 -Wall -Wno-strict-overflow" } */
/* Source: Ian Lance Taylor. */
int
foo
(
int
i
)
{
return
i
+
10
>
i
;
}