je method

AsmBuilderBase je(
  1. Operand label
)

Appends a je instruction to the instruction list

Implementation

AsmBuilderBase je(Operand label) {
  append(OneOperandInstructionIntel('je', label));
  return this;
}