view gcc/testsuite/gcc.dg/gimplefe-26.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
line wrap: on
line source

/* { dg-do compile { target c99_runtime } } */
/* { dg-options "-O -fgimple -fdump-tree-ssa-gimple" } */

#define foo(type, num) \
type __GIMPLE () foo_##num (type a, type b, type c) \
{ \
  type t0; \
  t0_1 = __FMA (a, b, c); \
  return t0_1; \
}

foo(float, 1)
foo(double, 2)
foo(long double, 3)

/* { dg-final { scan-tree-dump-times "__FMA" 3 "ssa" } } */