about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/debuginfo
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-07-06 05:48:11 +0000
committerbors <bors@rust-lang.org>2022-07-06 05:48:11 +0000
commit5b8cf49c51833ee5d27ae2e8e179337dbb9f14d7 (patch)
treea088622340541cbdb4ca3528a3db1d972c1e886d /compiler/rustc_codegen_llvm/src/debuginfo
parentf342bea9d19f14616c6559312552e6d0ee529cfd (diff)
parent4f0a64736b94a84da4272867366b8679b585e603 (diff)
downloadrust-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.rs2
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;