blob: 0b9f7d12c32b0234511a30d05769119031d8c1cd [file]
//===-- Implementation of fminimum_magf function---------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "src/math/fminimum_magf.h"
#include "src/__support/math/fminimum_magf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, fminimum_magf, (float x, float y)) {
return math::fminimum_magf(x, y);
}
} // namespace LIBC_NAMESPACE_DECL