Ejemplo n.º 1
0
 public static LLBranchInstruction Create(LLFunction pFunction, LLLocation pConditionSource, LLLabel pTrueTargetLabel, LLLabel pFalseTargetLabel)
 {
     LLBranchInstruction instruction = new LLBranchInstruction(pFunction);
     instruction.mConditionSource = pConditionSource;
     instruction.mTrueTargetLabel = pTrueTargetLabel;
     instruction.mFalseTargetLabel = pFalseTargetLabel;
     return instruction;
 }
Ejemplo n.º 2
0
        public static LLBranchInstruction Create(LLFunction pFunction, LLLocation pConditionSource, LLLabel pTrueTargetLabel, LLLabel pFalseTargetLabel)
        {
            LLBranchInstruction instruction = new LLBranchInstruction(pFunction);

            instruction.mConditionSource  = pConditionSource;
            instruction.mTrueTargetLabel  = pTrueTargetLabel;
            instruction.mFalseTargetLabel = pFalseTargetLabel;
            return(instruction);
        }