aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-3.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-3.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-3.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-3.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-3.c
deleted file mode 100644
index 22f6a56a9..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/Wstrict-overflow-3.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=4" } */
-
-/* Source: Ian Lance Taylor. Based on strict-overflow-2.c. */
-
-/* We can only simplify the division when using strict overflow
- semantics. */
-
-int
-foo (int i)
-{
- return (i * 100) / 10; /* { dg-warning "assuming signed overflow does not occur" "correct warning" } */
-}