xref: /llvm-project/libc/src/math/generic/issignalingl.cpp (revision d0b6709965f5f119c65e7d14cfc917a8f205edf0)
147e3d8dcSShourya Goel //===-- Implementation of issignalingl function ---------------------------===//
247e3d8dcSShourya Goel //
347e3d8dcSShourya Goel // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
447e3d8dcSShourya Goel // See https://llvm.org/LICENSE.txt for license information.
547e3d8dcSShourya Goel // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
647e3d8dcSShourya Goel //
747e3d8dcSShourya Goel //===----------------------------------------------------------------------===//
847e3d8dcSShourya Goel 
947e3d8dcSShourya Goel #include "src/math/issignalingl.h"
1047e3d8dcSShourya Goel #include "src/__support/FPUtil/BasicOperations.h"
1147e3d8dcSShourya Goel #include "src/__support/common.h"
1247e3d8dcSShourya Goel #include "src/__support/macros/config.h"
1347e3d8dcSShourya Goel 
1447e3d8dcSShourya Goel namespace LIBC_NAMESPACE_DECL {
1547e3d8dcSShourya Goel 
1647e3d8dcSShourya Goel LLVM_LIBC_FUNCTION(int, issignalingl, (long double x)) {
17*d0b67099Slntue   return fputil::issignaling_impl(x);
1847e3d8dcSShourya Goel }
1947e3d8dcSShourya Goel 
2047e3d8dcSShourya Goel } // namespace LIBC_NAMESPACE_DECL
21