aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/fp-contract.c
blob: c048d69586453524953469d7a7ebc61062c44f72 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -O3 -ffp-contract=fast -triple=powerpc-apple-darwin10 -S -o - %s | FileCheck %s

float fma_test1(float a, float b, float c) {
// CHECK: fmadds
  float x = a * b;
  float y = x + c;
  return y;
}