blob: f3b03b1f0829fd317bd84c8daa4ccb5b7a77a884 [file]
//===-- Implementation of totalorderf16 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/totalorderf16.h"
#include "src/__support/math/totalorderf16.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(int, totalorderf16, (const float16 *x, const float16 *y)) {
return math::totalorderf16(x, y);
}
} // namespace LIBC_NAMESPACE_DECL