diff options
| author | Oli Scherer <github333195615777966@oli-obk.de> | 2025-02-24 12:23:45 +0000 |
|---|---|---|
| committer | Oli Scherer <github333195615777966@oli-obk.de> | 2025-02-24 15:11:29 +0000 |
| commit | 29440b84a9f1eb216ce3c937bbd9cc126078a437 (patch) | |
| tree | bdff47d5e6f687ee99577bf8af5d32d9a3bffba5 /compiler/rustc_codegen_llvm/src/abi.rs | |
| parent | 396baa750e51a0e40fb0b803bfa6399a35e604a2 (diff) | |
| download | rust-29440b84a9f1eb216ce3c937bbd9cc126078a437.tar.gz rust-29440b84a9f1eb216ce3c937bbd9cc126078a437.zip | |
Remove an unused lifetime param
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/abi.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/abi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/abi.rs b/compiler/rustc_codegen_llvm/src/abi.rs index 8c75125e009..71059338151 100644 --- a/compiler/rustc_codegen_llvm/src/abi.rs +++ b/compiler/rustc_codegen_llvm/src/abi.rs @@ -654,7 +654,7 @@ impl<'ll, 'tcx> FnAbiLlvmExt<'ll, 'tcx> for FnAbi<'tcx, Ty<'tcx>> { } } -impl<'tcx> AbiBuilderMethods<'tcx> for Builder<'_, '_, 'tcx> { +impl AbiBuilderMethods for Builder<'_, '_, '_> { fn get_param(&mut self, index: usize) -> Self::Value { llvm::get_param(self.llfn(), index as c_uint) } |
