diff options
| author | bors <bors@rust-lang.org> | 2023-11-21 08:40:39 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-11-21 08:40:39 +0000 |
| commit | c5af0610196bc39c44e54f1e08bd9149bdc66929 (patch) | |
| tree | 86d214f395b4d0a2c4ecb44d12b53e67a37c458b /compiler/rustc_ty_utils/src/instance.rs | |
| parent | 85c42b751e65bd77044163e35a3b73ed7d15bec3 (diff) | |
| parent | f13f9809003665fb323ee715102ca8a5914810e8 (diff) | |
| download | rust-c5af0610196bc39c44e54f1e08bd9149bdc66929.tar.gz rust-c5af0610196bc39c44e54f1e08bd9149bdc66929.zip | |
Auto merge of #118126 - Nilstrieb:rollup-5ogh896, r=Nilstrieb
Rollup of 7 pull requests Successful merges: - #117790 (CFI: Add missing use core::ffi::c_int) - #118059 (Explicitly unset $CARGO for compiletest) - #118081 (`rustc_ty_utils` cleanups) - #118094 (feat: specialize `SpecFromElem` for `()`) - #118097 (Update books) - #118115 (Fix occurrences of old fn names in comment and tracing) - #118121 (`rustc_hir` cleanups) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_ty_utils/src/instance.rs')
| -rw-r--r-- | compiler/rustc_ty_utils/src/instance.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_ty_utils/src/instance.rs b/compiler/rustc_ty_utils/src/instance.rs index 1487f40fd99..31f6a56eaeb 100644 --- a/compiler/rustc_ty_utils/src/instance.rs +++ b/compiler/rustc_ty_utils/src/instance.rs @@ -61,7 +61,7 @@ fn resolve_instance<'tcx>( Ok(Some(Instance { def, args })) }; - debug!("inner_resolve_instance: result={:?}", result); + debug!("resolve_instance: result={:?}", result); result } @@ -328,6 +328,6 @@ fn resolve_associated_item<'tcx>( }) } -pub fn provide(providers: &mut Providers) { +pub(crate) fn provide(providers: &mut Providers) { *providers = Providers { resolve_instance, ..*providers }; } |
