aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/fold-sub.c
blob: f47f124df6183bd6d49c4212e1523b5572d207de (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-ffinite-math-only -fdump-tree-gimple" } */

float f(float x)
{
  return x - x;
}

/* Substraction should be turned into 0.  */

/* { dg-final { scan-tree-dump-not " - " "gimple" } } */