Remove unused store_stackslot/load_stackslot trait methods.

This commit is contained in:
Benjamin Bouvier
2021-04-14 11:41:02 +02:00
parent 91c65d739f
commit 4c595f4f9d
2 changed files with 0 additions and 50 deletions

View File

@@ -111,24 +111,6 @@ pub trait ABICallee {
/// Get the address of a stackslot.
fn stackslot_addr(&self, slot: StackSlot, offset: u32, into_reg: Writable<Reg>) -> Self::I;
/// Load from a stackslot.
fn load_stackslot(
&self,
slot: StackSlot,
offset: u32,
ty: Type,
into_reg: ValueRegs<Writable<Reg>>,
) -> SmallInstVec<Self::I>;
/// Store to a stackslot.
fn store_stackslot(
&self,
slot: StackSlot,
offset: u32,
ty: Type,
from_reg: ValueRegs<Reg>,
) -> SmallInstVec<Self::I>;
/// Load from a spillslot.
fn load_spillslot(
&self,