blob: c048d69586453524953469d7a7ebc61062c44f72 [file] [log] [blame]
Lang Hamesc9686712012-07-06 00:59:19 +00001// RUN: %clang_cc1 -O3 -ffp-contract=fast -triple=powerpc-apple-darwin10 -S -o - %s | FileCheck %s
2
3float fma_test1(float a, float b, float c) {
4// CHECK: fmadds
5 float x = a * b;
6 float y = x + c;
7 return y;
8}