about summary refs log tree commit diff
path: root/compiler/rustc_codegen_cranelift/src/debuginfo/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-07-22 15:09:09 +0000
committerbors <bors@rust-lang.org>2023-07-22 15:09:09 +0000
commitab0f3e680e4fd50218914b8afa6900a67377721c (patch)
tree0e19d5d801a634c6c43ae0d3901e677475d719d5 /compiler/rustc_codegen_cranelift/src/debuginfo/mod.rs
parent8164cdb9ee460eddcb8888b9b6f72836a956d110 (diff)
parent8ffa34ad4e41084a2bbd911a8f1727bb6e5738c9 (diff)
downloadrust-ab0f3e680e4fd50218914b8afa6900a67377721c.tar.gz
rust-ab0f3e680e4fd50218914b8afa6900a67377721c.zip
Auto merge of #113960 - bjorn3:sync_cg_clif-2023-07-22, r=bjorn3
Sync rustc_codegen_cranelift

This time Cranelift has been updated to 0.98. A couple of bugs have been fixed and a decent amount of x86 vendor intrinsics have been implemented.

r? `@ghost`

`@rustbot` label +A-codegen +A-cranelift +T-compiler
Diffstat (limited to 'compiler/rustc_codegen_cranelift/src/debuginfo/mod.rs')
-rw-r--r--compiler/rustc_codegen_cranelift/src/debuginfo/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_cranelift/src/debuginfo/mod.rs b/compiler/rustc_codegen_cranelift/src/debuginfo/mod.rs
index 3a7421d8b30..8a4b1cccf14 100644
--- a/compiler/rustc_codegen_cranelift/src/debuginfo/mod.rs
+++ b/compiler/rustc_codegen_cranelift/src/debuginfo/mod.rs
@@ -38,7 +38,7 @@ pub(crate) struct DebugContext {
 pub(crate) struct FunctionDebugContext {
     entry_id: UnitEntryId,
     function_source_loc: (FileId, u64, u64),
-    source_loc_set: indexmap::IndexSet<(FileId, u64, u64)>,
+    source_loc_set: IndexSet<(FileId, u64, u64)>,
 }
 
 impl DebugContext {