Skip to main content

Jge

Trait Jge 

Source
pub trait Jge<T> {
    // Required method
    fn jge(&mut self, op1: T);
}
Expand description

Trait for jge instruction kinds.

Required Methods§

Source

fn jge(&mut self, op1: T)

Emit a conditional jump if greater or equal (SF=OF). This handles the flags from a signed arithmetic operation.

Implementors§

Source§

impl Jge<&mut Label> for Asm