コード例 #1
0
 public void EmitMul(Type type, bool @checked)
 {
     if (@checked)
     {
         Emit(MulOvfInstruction.Create(type));
     }
     else
     {
         Emit(MulInstruction.Create(type));
     }
 }
コード例 #2
0
ファイル: InstructionList.cs プロジェクト: modulexcite/pash-1
 public void EmitMul(Type type, bool @checked)
 {
     if (!@checked)
     {
         this.Emit(MulInstruction.Create(type));
         return;
     }
     else
     {
         this.Emit(MulOvfInstruction.Create(type));
         return;
     }
 }