90
90
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ) ]
91
91
#![ feature( never_type) ]
92
92
#![ feature( nll) ]
93
- #![ feature( in_band_lifetimes) ]
94
93
#![ feature( iter_zip) ]
95
94
#![ recursion_limit = "256" ]
96
95
@@ -117,7 +116,7 @@ pub mod test;
117
116
/// This function computes the symbol name for the given `instance` and the
118
117
/// given instantiating crate. That is, if you know that instance X is
119
118
/// instantiated in crate Y, this is the symbol name this instance would have.
120
- pub fn symbol_name_for_instance_in_crate (
119
+ pub fn symbol_name_for_instance_in_crate < ' tcx > (
121
120
tcx : TyCtxt < ' tcx > ,
122
121
instance : Instance < ' tcx > ,
123
122
instantiating_crate : CrateNum ,
@@ -132,7 +131,7 @@ pub fn provide(providers: &mut Providers) {
132
131
// The `symbol_name` query provides the symbol name for calling a given
133
132
// instance from the local crate. In particular, it will also look up the
134
133
// correct symbol name of instances from upstream crates.
135
- fn symbol_name_provider ( tcx : TyCtxt < ' tcx > , instance : Instance < ' tcx > ) -> ty:: SymbolName < ' tcx > {
134
+ fn symbol_name_provider < ' tcx > ( tcx : TyCtxt < ' tcx > , instance : Instance < ' tcx > ) -> ty:: SymbolName < ' tcx > {
136
135
let symbol_name = compute_symbol_name ( tcx, instance, || {
137
136
// This closure determines the instantiating crate for instances that
138
137
// need an instantiating-crate-suffix for their symbol name, in order
@@ -152,14 +151,14 @@ fn symbol_name_provider(tcx: TyCtxt<'tcx>, instance: Instance<'tcx>) -> ty::Symb
152
151
}
153
152
154
153
/// This function computes the typeid for the given function ABI.
155
- pub fn typeid_for_fnabi ( tcx : TyCtxt < ' tcx > , fn_abi : & FnAbi < ' tcx , Ty < ' tcx > > ) -> String {
154
+ pub fn typeid_for_fnabi < ' tcx > ( tcx : TyCtxt < ' tcx > , fn_abi : & FnAbi < ' tcx , Ty < ' tcx > > ) -> String {
156
155
v0:: mangle_typeid_for_fnabi ( tcx, fn_abi)
157
156
}
158
157
159
158
/// Computes the symbol name for the given instance. This function will call
160
159
/// `compute_instantiating_crate` if it needs to factor the instantiating crate
161
160
/// into the symbol name.
162
- fn compute_symbol_name (
161
+ fn compute_symbol_name < ' tcx > (
163
162
tcx : TyCtxt < ' tcx > ,
164
163
instance : Instance < ' tcx > ,
165
164
compute_instantiating_crate : impl FnOnce ( ) -> CrateNum ,
0 commit comments