diff options
| author | bors <bors@rust-lang.org> | 2022-10-03 11:02:58 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-10-03 11:02:58 +0000 |
| commit | f47e9af824a2c13873af6b898f2d65a36d029466 (patch) | |
| tree | 16e6fa4830447d1ab70fe65f685d1d16aff162eb /compiler/rustc_codegen_llvm/src/abi.rs | |
| parent | 6b139c5b3e2bad623bdbd8583bc4f2b0f763113a (diff) | |
| parent | 268e02c3875f8d0310a8eeb36007e7d80aa63cbd (diff) | |
| download | rust-f47e9af824a2c13873af6b898f2d65a36d029466.tar.gz rust-f47e9af824a2c13873af6b898f2d65a36d029466.zip | |
Auto merge of #102551 - bjorn3:cg_ssa_cleanup, r=davidtwco
Some more cleanup for rustc_codegen_ssa With the aim to make non-LLVM like backends, like Cranelift, easier to support using cg_ssa.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/abi.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/abi.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_codegen_llvm/src/abi.rs b/compiler/rustc_codegen_llvm/src/abi.rs index 26f5225f6b4..d478efc863a 100644 --- a/compiler/rustc_codegen_llvm/src/abi.rs +++ b/compiler/rustc_codegen_llvm/src/abi.rs @@ -592,10 +592,6 @@ impl<'ll, 'tcx> FnAbiLlvmExt<'ll, 'tcx> for FnAbi<'tcx, Ty<'tcx>> { } impl<'tcx> AbiBuilderMethods<'tcx> for Builder<'_, '_, 'tcx> { - fn apply_attrs_callsite(&mut self, fn_abi: &FnAbi<'tcx, Ty<'tcx>>, callsite: Self::Value) { - fn_abi.apply_attrs_callsite(self, callsite) - } - fn get_param(&mut self, index: usize) -> Self::Value { llvm::get_param(self.llfn(), index as c_uint) } |
