Remove in_band_lifetimes from rustc_codegen_llvm
See #91867 for more information.
This commit is contained in:
committed by
Matthew House
parent
1d01550f7e
commit
4937a55dfb
@@ -26,7 +26,7 @@ use tracing::debug;
|
||||
///
|
||||
/// If there’s a value with the same name already declared, the function will
|
||||
/// update the declaration and return existing Value instead.
|
||||
fn declare_raw_fn(
|
||||
fn declare_raw_fn<'ll>(
|
||||
cx: &CodegenCx<'ll, '_>,
|
||||
name: &str,
|
||||
callconv: llvm::CallConv,
|
||||
@@ -50,7 +50,7 @@ fn declare_raw_fn(
|
||||
llfn
|
||||
}
|
||||
|
||||
impl CodegenCx<'ll, 'tcx> {
|
||||
impl<'ll, 'tcx> CodegenCx<'ll, 'tcx> {
|
||||
/// Declare a global value.
|
||||
///
|
||||
/// If there’s a value with the same name already declared, the function will
|
||||
|
||||
Reference in New Issue
Block a user