summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr70086-1.c
blob: 7289798a4f3cdb8d30f9c83103aa600b61800d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR target/70086 */
/* { dg-do compile } */
/* { dg-options "-mtune=barcelona -mavx512vl -ffloat-store" } */

float
foo (float a, float b, double c, float d, double e, float f)
{
  e -= d;
  d *= e;
  return e + d;
}