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