aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr19988.c
blob: aa2fed13961c4ada9adae9d637d4f6ce72a6adda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized -fdump-tree-original" } */

double foo(double x, double y)
{
  return ((x + 0.1234 * y) * (x - 0.1234 * y));
}

/* Keep positive constants during folding.  */
/* { dg-final { scan-tree-dump-times " 1.23" 2 "original" } } */
/* CSE one multiplication.  */
/* { dg-final { scan-tree-dump-times " \\\* " 2 "optimized" } } */
/* { dg-final { cleanup-tree-dump "original" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */