[Workflow] Roll back some settings since they caused more issues
[llvm-project.git] / libc / src / math / generic / fmaf.cpp
blob30074b8ca4a0bf519c2cac09025bf047222f26e5
1 //===-- Implementation of fmaf function -----------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "src/math/fmaf.h"
10 #include "src/__support/common.h"
12 #include "src/__support/FPUtil/FMA.h"
14 namespace __llvm_libc {
16 LLVM_LIBC_FUNCTION(float, fmaf, (float x, float y, float z)) {
17 return fputil::fma(x, y, z);
20 } // namespace __llvm_libc