diff options
| author | bors <bors@rust-lang.org> | 2022-07-06 05:48:11 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-07-06 05:48:11 +0000 |
| commit | 5b8cf49c51833ee5d27ae2e8e179337dbb9f14d7 (patch) | |
| tree | a088622340541cbdb4ca3528a3db1d972c1e886d /compiler/rustc_codegen_llvm/src/debuginfo | |
| parent | f342bea9d19f14616c6559312552e6d0ee529cfd (diff) | |
| parent | 4f0a64736b94a84da4272867366b8679b585e603 (diff) | |
| download | rust-5b8cf49c51833ee5d27ae2e8e179337dbb9f14d7.tar.gz rust-5b8cf49c51833ee5d27ae2e8e179337dbb9f14d7.zip | |
Auto merge of #98206 - eggyal:align-to-chalk-folding-api, r=jackh726
Split TypeVisitable from TypeFoldable Impl of rust-lang/compiler-team#520 following MCP approval. r? `@ghost`
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/debuginfo')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/debuginfo/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs index 71699b5cf38..64ecbc82c56 100644 --- a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs +++ b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs @@ -27,7 +27,7 @@ use rustc_index::vec::IndexVec; use rustc_middle::mir; use rustc_middle::ty::layout::LayoutOf; use rustc_middle::ty::subst::{GenericArgKind, SubstsRef}; -use rustc_middle::ty::{self, Instance, ParamEnv, Ty, TypeFoldable}; +use rustc_middle::ty::{self, Instance, ParamEnv, Ty, TypeVisitable}; use rustc_session::config::{self, DebugInfo}; use rustc_session::Session; use rustc_span::symbol::Symbol; |
