1e34dbb12SOverMighty //===-- Implementation header for f16fma ------------------------*- C++ -*-===// 2e34dbb12SOverMighty // 3e34dbb12SOverMighty // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4e34dbb12SOverMighty // See https://llvm.org/LICENSE.txt for license information. 5e34dbb12SOverMighty // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6e34dbb12SOverMighty // 7e34dbb12SOverMighty //===----------------------------------------------------------------------===// 8e34dbb12SOverMighty 9e34dbb12SOverMighty #ifndef LLVM_LIBC_SRC_MATH_F16FMA_H 10e34dbb12SOverMighty #define LLVM_LIBC_SRC_MATH_F16FMA_H 11e34dbb12SOverMighty 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 13e34dbb12SOverMighty #include "src/__support/macros/properties/types.h" 14e34dbb12SOverMighty 15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 16e34dbb12SOverMighty 17e34dbb12SOverMighty float16 f16fma(double x, double y, double z); 18e34dbb12SOverMighty 19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 20e34dbb12SOverMighty 21e34dbb12SOverMighty #endif // LLVM_LIBC_SRC_MATH_F16FMA_H 22