1 // RUN: %clang_cc1 -O3 -ffp-contract=fast -triple=powerpc-apple-darwin10 -S -o - %s | FileCheck %s
2 // REQUIRES: ppc32-registered-target
3
4 float fma_test1(float a, float b, float c) {
5 // CHECK: fmadds
6 float x = a * b;
7 float y = x + c;
8 return y;
9 }
10