public void EmitMul(Type type, bool @checked) { if (@checked) { Emit(MulOvfInstruction.Create(type)); } else { Emit(MulInstruction.Create(type)); } }
public void EmitMul(Type type, bool @checked) { if (!@checked) { this.Emit(MulInstruction.Create(type)); return; } else { this.Emit(MulOvfInstruction.Create(type)); return; } }