Skip to content

Revert "[libc][math] Implement issignaling macro." #109992

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions libc/include/llvm-libc-macros/math-function-macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,5 @@
__builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
#define isnormal(x) __builtin_isnormal(x)
#define issubnormal(x) (fpclassify(x) == FP_SUBNORMAL)
#if (defined(__clang__) && __clang_major__ >= 18) || \
(defined(__GNUC__) && __GNUC__ >= 13)
#define issignaling(x) __builtin_issignaling(x)
#endif

#endif // LLVM_LIBC_MACROS_MATH_FUNCTION_MACROS_H
45 changes: 0 additions & 45 deletions libc/test/include/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,36 +81,6 @@ add_libc_test(
libc.include.llvm-libc-macros.stdckdint_macros
)

add_libc_test(
issignaling_test
SUITE
libc_include_tests
SRCS
issignaling_test.cpp
DEPENDS
libc.include.llvm-libc-macros.math_function_macros
)

add_libc_test(
issignalingf_test
SUITE
libc_include_tests
SRCS
issignalingf_test.cpp
DEPENDS
libc.include.llvm-libc-macros.math_function_macros
)

add_libc_test(
issignalingl_test
SUITE
libc_include_tests
SRCS
issignalingl_test.cpp
DEPENDS
libc.include.llvm-libc-macros.math_function_macros
)

add_libc_test(
issubnormal_test
SUITE
Expand Down Expand Up @@ -396,21 +366,6 @@ add_libc_test(
libc.include.llvm-libc-macros.math_function_macros
)

add_libc_test(
issignaling_c_test
C_TEST
UNIT_TEST_ONLY
SUITE
libc_include_tests
SRCS
issignaling_test.c
COMPILE_OPTIONS
-Wall
-Werror
DEPENDS
libc.include.llvm-libc-macros.math_function_macros
)

add_libc_test(
isinf_c_test
C_TEST
Expand Down
49 changes: 0 additions & 49 deletions libc/test/include/IsSignalingTest.h

This file was deleted.

24 changes: 0 additions & 24 deletions libc/test/include/issignaling_test.c

This file was deleted.

18 changes: 0 additions & 18 deletions libc/test/include/issignaling_test.cpp

This file was deleted.

18 changes: 0 additions & 18 deletions libc/test/include/issignalingf_test.cpp

This file was deleted.

18 changes: 0 additions & 18 deletions libc/test/include/issignalingl_test.cpp

This file was deleted.

Loading