about summary refs log tree commit diff
path: root/compiler/rustc_monomorphize/src
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2024-11-02 20:28:24 -0700
committerJubilee Young <workingjubilee@gmail.com>2024-11-02 20:31:47 -0700
commit31cbde037bd58aa5536970dad8bf8dd17e392f3d (patch)
tree29085c80dc68d18b93e0659be2707ce2489e4ec9 /compiler/rustc_monomorphize/src
parent4046e3610c0db18aeffe0c885fe6e62f2c823344 (diff)
downloadrust-31cbde037bd58aa5536970dad8bf8dd17e392f3d.tar.gz
rust-31cbde037bd58aa5536970dad8bf8dd17e392f3d.zip
compiler: Add rustc_abi to _monomorphize
Diffstat (limited to 'compiler/rustc_monomorphize/src')
-rw-r--r--compiler/rustc_monomorphize/src/collector.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_monomorphize/src/collector.rs b/compiler/rustc_monomorphize/src/collector.rs
index 8df6e63deeb..50bab0da606 100644
--- a/compiler/rustc_monomorphize/src/collector.rs
+++ b/compiler/rustc_monomorphize/src/collector.rs
@@ -210,6 +210,7 @@ mod move_check;
 use std::path::PathBuf;
 
 use move_check::MoveCheckState;
+use rustc_abi::Size;
 use rustc_data_structures::sync::{LRef, MTLock, par_for_each_in};
 use rustc_data_structures::unord::{UnordMap, UnordSet};
 use rustc_hir as hir;
@@ -236,7 +237,6 @@ use rustc_session::config::EntryFnType;
 use rustc_span::source_map::{Spanned, dummy_spanned, respan};
 use rustc_span::symbol::{Ident, sym};
 use rustc_span::{DUMMY_SP, Span};
-use rustc_target::abi::Size;
 use tracing::{debug, instrument, trace};
 
 use crate::errors::{self, EncounteredErrorWhileInstantiating, NoOptimizedMir, RecursionLimit};