about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJacob Pratt <jacob@jhpratt.dev>2023-08-12 00:15:40 -0400
committerJacob Pratt <jacob@jhpratt.dev>2023-08-12 00:21:04 -0400
commit62ca5aa8e4aba8984ff99fcef5c1c17ead3ee91d (patch)
tree336c5f952d7428adfcde75cf95181852c801b86d
parent7f083769641b08a20fe414952ef8c2e94c1b14ea (diff)
downloadrust-62ca5aa8e4aba8984ff99fcef5c1c17ead3ee91d.tar.gz
rust-62ca5aa8e4aba8984ff99fcef5c1c17ead3ee91d.zip
Remove unnecessary feature gates
-rw-r--r--compiler/rustc_codegen_ssa/src/lib.rs1
-rw-r--r--library/std/src/lib.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_ssa/src/lib.rs b/compiler/rustc_codegen_ssa/src/lib.rs
index f577f653ccd..7bed3fa6150 100644
--- a/compiler/rustc_codegen_ssa/src/lib.rs
+++ b/compiler/rustc_codegen_ssa/src/lib.rs
@@ -2,7 +2,6 @@
 #![feature(associated_type_bounds)]
 #![feature(box_patterns)]
 #![feature(if_let_guard)]
-#![feature(int_roundings)]
 #![feature(let_chains)]
 #![feature(negative_impls)]
 #![feature(never_type)]
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs
index 9038e8fa9d7..6f58e5a0f05 100644
--- a/library/std/src/lib.rs
+++ b/library/std/src/lib.rs
@@ -293,7 +293,6 @@
 #![feature(float_next_up_down)]
 #![feature(hasher_prefixfree_extras)]
 #![feature(hashmap_internals)]
-#![feature(int_roundings)]
 #![feature(ip)]
 #![feature(ip_in_core)]
 #![feature(maybe_uninit_slice)]