blob: d02b1063561246d1ea363a8f9f277a7833120977 [file] [log] [blame]
//===-- Implementation of the GPU tan 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/tan.h"
#include "src/__support/common.h"
namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(double, tan, (double x)) { return __builtin_tan(x); }
} // namespace LIBC_NAMESPACE