about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2024-10-30 12:27:59 -0500
committerTrevor Gross <tmgross@umich.edu>2024-10-30 12:27:59 -0500
commit9818afad7c5952cbfbb80a064055ca8e1860dfbb (patch)
treea0924a0f7ee2e64ff3e9ec6b335dcc683070727b
parentfbd690735826fd4b3b3f9862820944b23ae9000e (diff)
downloadrust-9818afad7c5952cbfbb80a064055ca8e1860dfbb.tar.gz
rust-9818afad7c5952cbfbb80a064055ca8e1860dfbb.zip
Remove the unneeded `isqrt` feature gate
[1] has been stabilized so we no longer need to enable it.

[1]: https://github.com/rust-lang/rust/issues/116226
-rw-r--r--library/compiler-builtins/testcrate/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/compiler-builtins/testcrate/src/lib.rs b/library/compiler-builtins/testcrate/src/lib.rs
index 58419bf1bd0..4154e0fb34f 100644
--- a/library/compiler-builtins/testcrate/src/lib.rs
+++ b/library/compiler-builtins/testcrate/src/lib.rs
@@ -15,7 +15,6 @@
 #![no_std]
 #![cfg_attr(f128_enabled, feature(f128))]
 #![cfg_attr(f16_enabled, feature(f16))]
-#![feature(isqrt)]
 
 pub mod bench;
 extern crate alloc;