[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / libc / src / math / gpu / sqrtf.cpp
blobe17f942a4d5fcf6595432074da8c06ce35a41c6b
1 //===-- Implementation of the GPU sqrtf function --------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "src/math/sqrtf.h"
10 #include "src/__support/common.h"
12 namespace LIBC_NAMESPACE {
14 LLVM_LIBC_FUNCTION(float, sqrtf, (float x)) { return __builtin_sqrtf(x); }
16 } // namespace LIBC_NAMESPACE