Lang Hames | c968671 | 2012-07-06 00:59:19 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -O3 -ffp-contract=fast -triple=powerpc-apple-darwin10 -S -o - %s | FileCheck %s |
2 | |||||
3 | float 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 | } |