summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr55152-2.c
blob: 54db0f2062da105a829d6690ac8ed9891fe2b588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-O -ffinite-math-only -fno-signed-zeros -fstrict-overflow -fdump-tree-optimized" } */

double g (double a)
{
  return (a<-a)?a:-a;
}
int f(int a)
{
  return (a<-a)?a:-a;
}

/* { dg-final { scan-tree-dump-times "ABS_EXPR" 2 "optimized" } } */