mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 08:16:05 +00:00

support default values for C/C++. FPP-MODEL=PRECISE enables FFP-CONTRACT(FMA is enabled). Fix for https://bugs.llvm.org/show_bug.cgi?id=50222
11 lines
295 B
C
11 lines
295 B
C
// RUN: %clang_cc1 -O3 -ffp-contract=fast -triple=aarch64-apple-darwin \
|
|
// RUN: -S -o - %s | FileCheck --check-prefix=CHECK-FMADD %s
|
|
// REQUIRES: aarch64-registered-target
|
|
|
|
float fma_test1(float a, float b, float c) {
|
|
// CHECK-FMADD: fmadd
|
|
float x = a * b;
|
|
float y = x + c;
|
|
return y;
|
|
}
|