示例#1
0
 public Instruction(Opcode opcode, BasicBlock block)
 {
     Opcode = opcode;
     Block  = block;
 }
示例#2
0
 public Instruction(Opcode opcode, uint offset)
 {
     Opcode = opcode;
     Offset = offset;
 }