blob: f2655a3782f333c189b66f8644bd4e05c1ac0856 [file]
//===-- Implementation of scalbnf128 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/scalbnf128.h"
#include "src/__support/math/scalbnf128.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float128, scalbnf128, (float128 x, int n)) {
return math::scalbnf128(x, n);
}
} // namespace LIBC_NAMESPACE_DECL