public static HLBitwiseOrInstruction Create(HLMethod pMethod, HLLocation pDestination, HLLocation pLeftOperandSource, HLLocation pRightOperandSource)
 {
     HLBitwiseOrInstruction instruction = new HLBitwiseOrInstruction(pMethod);
     instruction.mDestination = pDestination;
     instruction.mLeftOperandSource = pLeftOperandSource;
     instruction.mRightOperandSource = pRightOperandSource;
     return instruction;
 }
Ejemplo n.º 2
0
        public static HLBitwiseOrInstruction Create(HLMethod pMethod, HLLocation pDestination, HLLocation pLeftOperandSource, HLLocation pRightOperandSource)
        {
            HLBitwiseOrInstruction instruction = new HLBitwiseOrInstruction(pMethod);

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