public static LLLeftShiftInstruction Create(LLFunction pFunction, LLLocation pDestination, LLLocation pLeftSource, LLLocation pRightSource)
 {
     LLLeftShiftInstruction instruction = new LLLeftShiftInstruction(pFunction);
     instruction.mDestination = pDestination;
     instruction.mLeftSource = pLeftSource;
     instruction.mRightSource = pRightSource;
     return instruction;
 }
        public static LLLeftShiftInstruction Create(LLFunction pFunction, LLLocation pDestination, LLLocation pLeftSource, LLLocation pRightSource)
        {
            LLLeftShiftInstruction instruction = new LLLeftShiftInstruction(pFunction);

            instruction.mDestination = pDestination;
            instruction.mLeftSource  = pLeftSource;
            instruction.mRightSource = pRightSource;
            return(instruction);
        }