about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/lib.rs
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2023-09-03 15:52:49 +1000
committerZalathar <Zalathar@users.noreply.github.com>2023-09-11 14:29:10 +1000
commit6e968b1e454d87870e8afff1a60ed706bad7377d (patch)
tree3429e78e4bcd87df8e5662d286553fc685d1e5c1 /compiler/rustc_codegen_llvm/src/lib.rs
parent1f56fa96573eec02f53cc9113eaa4557756517b6 (diff)
downloadrust-6e968b1e454d87870e8afff1a60ed706bad7377d.tar.gz
rust-6e968b1e454d87870e8afff1a60ed706bad7377d.zip
coverage: Simplify grouping of mappings by file
This removes an ad-hoc implementation of `group_by`.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/lib.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/lib.rs b/compiler/rustc_codegen_llvm/src/lib.rs
index d283299ac46..ac199624e34 100644
--- a/compiler/rustc_codegen_llvm/src/lib.rs
+++ b/compiler/rustc_codegen_llvm/src/lib.rs
@@ -10,6 +10,7 @@
 #![feature(iter_intersperse)]
 #![feature(let_chains)]
 #![feature(never_type)]
+#![feature(slice_group_by)]
 #![feature(impl_trait_in_assoc_type)]
 #![recursion_limit = "256"]
 #![allow(rustc::potential_query_instability)]