示例#1
0
        public static LLAllocateInstruction Create(LLFunction pFunction, LLLocation pDestination)
        {
            LLAllocateInstruction instruction = new LLAllocateInstruction(pFunction);

            instruction.mDestination = pDestination;
            return(instruction);
        }
 public static LLAllocateInstruction Create(LLFunction pFunction, LLLocation pDestination)
 {
     LLAllocateInstruction instruction = new LLAllocateInstruction(pFunction);
     instruction.mDestination = pDestination;
     return instruction;
 }