diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/Wstrict-overflow-6.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/Wstrict-overflow-6.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/Wstrict-overflow-6.c b/gcc/testsuite/gcc.dg/Wstrict-overflow-6.c new file mode 100644 index 000000000..c3a160c60 --- /dev/null +++ b/gcc/testsuite/gcc.dg/Wstrict-overflow-6.c @@ -0,0 +1,13 @@ +/* { dg-do compile } */ +/* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=2" } */ + +/* Source: Ian Lance Taylor. Based on strict-overflow-3.c. */ + +/* We can only simplify the conditional when using strict overflow + semantics. */ + +int +foo (int i, int j) +{ + return i + 100 < j + 1000; +} |