aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/fold-plusmult-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/fold-plusmult-2.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/fold-plusmult-2.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/fold-plusmult-2.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/fold-plusmult-2.c
deleted file mode 100644
index fd5376220..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/fold-plusmult-2.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-fdump-tree-original" } */
-
-int foo (int i)
-{
- return 2 + i * 4;
-}
-
-/* We do _not_ want the above to be canonicalized to (i * 2 + 1) * 2. */
-
-int bar (int i)
-{
- return 4 + i * 2;
-}
-
-/* But eventually this to be canonicalized to (i + 2) * 2. */
-
-/* { dg-final { scan-tree-dump "i \\\* 4 \\\+ 2" "original" } } */
-/* { dg-final { scan-tree-dump "\\\(i \\\+ 2\\\) \\\* 2" "original" } } */
-/* { dg-final { cleanup-tree-dump "original" } } */