[Ikvm-commit] ikvm/ikvmc remapper.cs,1.46,1.47
Brought to you by:
jfrijters
|
From: Jeroen F. <jfr...@us...> - 2014-11-19 07:24:45
|
Update of /cvsroot/ikvm/ikvm/ikvmc In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24739 Modified Files: remapper.cs Log Message: Added support for div.un and rem.un opcodes. Index: remapper.cs =================================================================== RCS file: /cvsroot/ikvm/ikvm/ikvmc/remapper.cs,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** remapper.cs 28 Apr 2014 13:34:03 -0000 1.46 --- remapper.cs 19 Nov 2014 07:24:41 -0000 1.47 *************** *** 1052,1055 **** --- 1052,1073 ---- } + [XmlType("div_un")] + public sealed class Div_Un : Simple + { + public Div_Un() + : base(OpCodes.Div_Un) + { + } + } + + [XmlType("rem_un")] + public sealed class Rem_Un : Simple + { + public Rem_Un() + : base(OpCodes.Rem_Un) + { + } + } + [XmlType("and")] public sealed class And : Simple *************** *** 1450,1453 **** --- 1468,1473 ---- [XmlElement(typeof(Sub))] [XmlElement(typeof(Mul))] + [XmlElement(typeof(Div_Un))] + [XmlElement(typeof(Rem_Un))] [XmlElement(typeof(And))] [XmlElement(typeof(Or))] |