예제 #1
0
 public ILInstruction(ILOpCode opCode, IILOperand operand, ILInstruction origin)
 {
     OpCode     = opCode;
     Operand    = operand;
     Annotation = origin.Annotation;
     IR         = origin.IR;
 }
예제 #2
0
 public ILInstruction(ILOpCode opCode, IILOperand operand, object annotation)
 {
     OpCode     = opCode;
     Operand    = operand;
     Annotation = annotation;
 }
예제 #3
0
 public ILInstruction(ILOpCode opCode, IILOperand operand)
 {
     OpCode  = opCode;
     Operand = operand;
 }