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) { Emit(@checked ? MulOvfInstruction.Create(type) : MulInstruction.Create(type)); }