blob: 66a4d096d5e2a9bf2df3adcd6dc79afc4e6f2ca7 [file] [log] [blame] [edit]
//===-- Single-precision x^y 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/powf.h"
#include "src/__support/math/powf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, powf, (float x, float y)) { return math::powf(x, y); }
} // namespace LIBC_NAMESPACE_DECL