(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / ilasm / codegen / IntInstr.cs
blob587c678bac7880a32a111b8012c5e0d51ea66c77
1 //
2 // Mono.ILASM.IntInstr
3 //
4 // Author(s):
5 // Jackson Harper (Jackson@LatitudeGeo.com)
6 //
7 // (C) 2003 Jackson Harper, All rights reserved
8 //
11 using System;
13 namespace Mono.ILASM {
15 public class IntInstr : IInstr {
17 private PEAPI.IntOp op;
18 private int operand;
20 public IntInstr (PEAPI.IntOp op, int operand, Location loc)
21 : base (loc)
23 this.op = op;
24 this.operand = operand;
27 public override void Emit (CodeGen code_gen, MethodDef meth,
28 PEAPI.CILInstructions cil)
30 cil.IntInst (op, operand);