about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/back
diff options
context:
space:
mode:
authorLegionMammal978 <mattlloydhouse@gmail.com>2021-12-13 21:52:35 -0500
committerLegionMammal978 <mattlloydhouse@gmail.com>2021-12-15 00:41:41 -0500
commiteaf39cbd9e37e705664dcf0e1ca1042913cf521a (patch)
treeb938c594b63c0ff4444968c81c590bc9b637c4c9 /compiler/rustc_codegen_ssa/src/back
parentd594910a2da12f158477b4c7281716f535cfa3de (diff)
downloadrust-eaf39cbd9e37e705664dcf0e1ca1042913cf521a.tar.gz
rust-eaf39cbd9e37e705664dcf0e1ca1042913cf521a.zip
Remove `in_band_lifetimes` from `rustc_codegen_ssa`
See #91867 for more information.
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
-rw-r--r--compiler/rustc_codegen_ssa/src/back/symbol_export.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/symbol_export.rs b/compiler/rustc_codegen_ssa/src/back/symbol_export.rs
index f80f9965f4d..baafa74b131 100644
--- a/compiler/rustc_codegen_ssa/src/back/symbol_export.rs
+++ b/compiler/rustc_codegen_ssa/src/back/symbol_export.rs
@@ -154,7 +154,7 @@ fn is_reachable_non_generic_provider_extern(tcx: TyCtxt<'_>, def_id: DefId) -> b
     tcx.reachable_non_generics(def_id.krate).contains_key(&def_id)
 }
 
-fn exported_symbols_provider_local(
+fn exported_symbols_provider_local<'tcx>(
     tcx: TyCtxt<'tcx>,
     cnum: CrateNum,
 ) -> &'tcx [(ExportedSymbol<'tcx>, SymbolExportLevel)] {