remove returns via arg pointer from the callconv interface

This commit is contained in:
Brendan Hansknecht 2022-02-17 21:21:07 -08:00
parent d65a971508
commit 8eb1b09ff9
3 changed files with 5 additions and 8 deletions

View file

@ -107,9 +107,6 @@ pub trait CallConv<GeneralReg: RegTrait, FloatReg: RegTrait, ASM: Assembler<Gene
sym: &Symbol,
layout: &Layout<'a>,
);
// returns true if the layout should be returned via an argument pointer.
fn returns_via_arg_pointer(ret_layout: &Layout) -> bool;
}
/// Assembler contains calls to the backend assembly generator.