[Ikvm-commit] ikvm/runtime compiler.cs,1.248,1.249
Brought to you by:
jfrijters
|
From: Jeroen F. <jfr...@us...> - 2014-07-01 15:00:56
|
Update of /cvsroot/ikvm/ikvm/runtime In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv32298 Modified Files: compiler.cs Log Message: Privileged invokespecial (from anonymous class to host class) should not go through invokespecial stub. Index: compiler.cs =================================================================== RCS file: /cvsroot/ikvm/ikvm/runtime/compiler.cs,v retrieving revision 1.248 retrieving revision 1.249 diff -C2 -d -r1.248 -r1.249 *** compiler.cs 24 Jun 2014 12:06:44 -0000 1.248 --- compiler.cs 1 Jul 2014 15:00:54 -0000 1.249 *************** *** 1710,1713 **** --- 1710,1717 ---- method.EmitCallvirt(ilGenerator); } + else if(instr.NormalizedOpCode == NormalizedByteCode.__privileged_invokespecial) + { + method.EmitCall(ilGenerator); + } else { |