1
2
3
4
5
6
7
8
9
10
//! Stack Instructions

use crate::{MacroAssembler, Result};

impl MacroAssembler {
    /// The drop instruction simply throw away a single operand.
    pub fn _drop(&mut self) -> Result<()> {
        self._pop()
    }
}