This PR resolves #96322 and implements the `signbit` macro under a new header `generic-math-macros.h`. This also removed the `TODO` in `math-macros.h` and moves `isfinite`, `isinf`, and `isnan` to the same generic maths header. Finally, a test file `generic-math-macros_test.cpp` that adds coverage to the above 4 macros. Fixes #96322.
18 lines
672 B
C
18 lines
672 B
C
//===-- Definition of function macros from math.h -------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIBC_MACROS_MATH_FUNCTION_MACROS_H
|
|
#define LLVM_LIBC_MACROS_MATH_FUNCTION_MACROS_H
|
|
|
|
#define isfinite(x) __builtin_isfinite(x)
|
|
#define isinf(x) __builtin_isinf(x)
|
|
#define isnan(x) __builtin_isnan(x)
|
|
#define signbit(x) __builtin_signbit(x)
|
|
|
|
#endif // LLVM_LIBC_MACROS_MATH_FUNCTION_MACROS_H
|