public static HLSubtractInstruction Create(HLMethod pMethod, HLLocation pDestination, HLLocation pLeftOperandSource, HLLocation pRightOperandSource) { HLSubtractInstruction instruction = new HLSubtractInstruction(pMethod); instruction.mDestination = pDestination; instruction.mLeftOperandSource = pLeftOperandSource; instruction.mRightOperandSource = pRightOperandSource; return instruction; }
public static HLSubtractInstruction Create(HLMethod pMethod, HLLocation pDestination, HLLocation pLeftOperandSource, HLLocation pRightOperandSource) { HLSubtractInstruction instruction = new HLSubtractInstruction(pMethod); instruction.mDestination = pDestination; instruction.mLeftOperandSource = pLeftOperandSource; instruction.mRightOperandSource = pRightOperandSource; return(instruction); }