From 81a25b1a1d5ea10a5a55156448c4a96ae2773346 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Mon, 30 Jun 2025 17:05:49 -0500 Subject: [PATCH 1/2] poke ci --- builtins-test/tests/conv.rs | 4 ++-- libm/README.md | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/builtins-test/tests/conv.rs b/builtins-test/tests/conv.rs index 491915d9b..7d729364f 100644 --- a/builtins-test/tests/conv.rs +++ b/builtins-test/tests/conv.rs @@ -118,7 +118,7 @@ mod i_to_f { i128, __floattidf; } - #[cfg(not(feature = "no-f16-f128"))] + #[cfg(f128_enabled)] #[cfg(not(any(target_arch = "powerpc", target_arch = "powerpc64")))] i_to_f! { f128, Quad, not(feature = "no-sys-f128-int-convert"), u32, __floatunsitf; @@ -129,7 +129,7 @@ mod i_to_f { i128, __floattitf; } - #[cfg(not(feature = "no-f16-f128"))] + #[cfg(f128_enabled)] #[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))] i_to_f! { f128, Quad, not(feature = "no-sys-f128-int-convert"), u32, __floatunsikf; diff --git a/libm/README.md b/libm/README.md index 77608db3d..950af22bf 100644 --- a/libm/README.md +++ b/libm/README.md @@ -40,3 +40,5 @@ inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as mentioned, without any additional terms or conditions. See [LICENSE.txt](LICENSE.txt) for full details. + +poke From bdc5b909b2a7e3af4318d9f0d091d109aaf04b03 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Mon, 30 Jun 2025 17:36:40 -0500 Subject: [PATCH 2/2] update --- builtins-test/tests/div_rem.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtins-test/tests/div_rem.rs b/builtins-test/tests/div_rem.rs index 5ae653cc9..e8327f9b4 100644 --- a/builtins-test/tests/div_rem.rs +++ b/builtins-test/tests/div_rem.rs @@ -147,7 +147,7 @@ mod float_div { f64, __divdf3, Double, all(); } - #[cfg(not(feature = "no-f16-f128"))] + #[cfg(f128_enabled)] #[cfg(not(any(target_arch = "powerpc", target_arch = "powerpc64")))] float! { f128, __divtf3, Quad, @@ -156,7 +156,7 @@ mod float_div { not(any(feature = "no-sys-f128", all(target_arch = "aarch64", target_os = "linux"))); } - #[cfg(not(feature = "no-f16-f128"))] + #[cfg(f128_enabled)] #[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))] float! { f128, __divkf3, Quad, not(feature = "no-sys-f128");