aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-6.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-6.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-6.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-6.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-6.c
deleted file mode 100644
index c3a160c60..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-6.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* { 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;
-}