public static HLBitwiseXorInstruction Create(HLMethod pMethod, HLLocation pDestination, HLLocation pLeftOperandSource, HLLocation pRightOperandSource)
 {
     HLBitwiseXorInstruction instruction = new HLBitwiseXorInstruction(pMethod);
     instruction.mDestination = pDestination;
     instruction.mLeftOperandSource = pLeftOperandSource;
     instruction.mRightOperandSource = pRightOperandSource;
     return instruction;
 }
示例#2
0
        public static HLBitwiseXorInstruction Create(HLMethod pMethod, HLLocation pDestination, HLLocation pLeftOperandSource, HLLocation pRightOperandSource)
        {
            HLBitwiseXorInstruction instruction = new HLBitwiseXorInstruction(pMethod);

            instruction.mDestination        = pDestination;
            instruction.mLeftOperandSource  = pLeftOperandSource;
            instruction.mRightOperandSource = pRightOperandSource;
            return(instruction);
        }