File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
utils/bazel/llvm-project-overlay/libc
test/src/__support/FPUtil Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -1001,6 +1001,19 @@ libc_support_library(
1001
1001
],
1002
1002
)
1003
1003
1004
+ libc_support_library (
1005
+ name = "__support_fputil_comparison_operations" ,
1006
+ hdrs = [
1007
+ "src/__support/FPUtil/comparison_operations.h" ,
1008
+ ],
1009
+ deps = [
1010
+ ":__support_cpp_type_traits" ,
1011
+ ":__support_fputil_fenv_impl" ,
1012
+ ":__support_fputil_fp_bits" ,
1013
+ ":__support_macros_config" ,
1014
+ ],
1015
+ )
1016
+
1004
1017
libc_support_library (
1005
1018
name = "__support_file_file" ,
1006
1019
srcs = [
Original file line number Diff line number Diff line change @@ -58,3 +58,15 @@ libc_test(
58
58
"//libc/utils/MPFRWrapper:mpfr_wrapper" ,
59
59
],
60
60
)
61
+
62
+ libc_test (
63
+ name = "comparison_operations_test" ,
64
+ srcs = ["comparison_operations_test.cpp" ],
65
+ deps = [
66
+ "//libc:__support_fputil_bfloat16" ,
67
+ "//libc:__support_fputil_comparison_operations" ,
68
+ "//libc:__support_fputil_rounding_mode" ,
69
+ "//libc:__support_macros_properties_types" ,
70
+ "//libc/test/UnitTest:fp_test_helpers" ,
71
+ ],
72
+ )
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ libc_test_library(
44
44
"//libc:__support_cpp_type_traits" ,
45
45
"//libc:__support_fputil_bfloat16" ,
46
46
"//libc:__support_fputil_cast" ,
47
+ "//libc:__support_fputil_comparison_operations" ,
47
48
"//libc:__support_fputil_fp_bits" ,
48
49
"//libc:__support_macros_config" ,
49
50
"//libc:__support_macros_properties_types" ,
You can’t perform that action at this time.
0 commit comments