blob: 61913b0aa333afeb10a8d6e04972880ba6016646 [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
Stephen Hines651f13c2014-04-23 16:59:28 -07002// REQUIRES: powerpc-registered-target
Lang Hamesc9686712012-07-06 00:59:19 +00003
4float 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}