11 lines · c
1// RUN: %clang_cc1 -O3 -ffp-contract=fast -triple=aarch64-apple-darwin \2// RUN: -S -o - %s | FileCheck --check-prefix=CHECK-FMADD %s3// REQUIRES: aarch64-registered-target4 5float fma_test1(float a, float b, float c) {6 // CHECK-FMADD: fmadd7 float x = a * b;8 float y = x + c;9 return y;10}11