Merge pull request #1534 from haf/bugs/hmac-wrong-keysizes
[mono.git] / mcs / ilasm / codegen / SimpInstr.cs
index e13811e003bc5bca36dcc0228b5b11bcd4ff4fe3..026a10790694e295e32432436fa8d8d3a21ed0e4 100644 (file)
@@ -16,13 +16,14 @@ namespace Mono.ILASM {
 
                 private PEAPI.Op op;
 
-                public SimpInstr (PEAPI.Op op)
+                public SimpInstr (PEAPI.Op op, Location loc)
+                       : base (loc)
                 {
                         this.op = op;
                 }
 
-                public void Emit (CodeGen code_gen, MethodDef meth, 
-                                 PEAPI.CILInstructions cil)
+                public override void Emit (CodeGen code_gen, MethodDef meth, 
+                                          PEAPI.CILInstructions cil)
                 {
                         cil.Inst (op);
                 }