Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/ilasm
diff options
context:
space:
mode:
authorRodrigo Kumpera <kumpera@gmail.com>2008-01-04 00:52:54 +0300
committerRodrigo Kumpera <kumpera@gmail.com>2008-01-04 00:52:54 +0300
commit0583f70de075cab3d0936d1d7bca1bfba998ebc4 (patch)
tree97b5d60f6cb7339f2fb2f2abc3e6d3a3b072bac8 /mcs/ilasm
parenta278bd3b4d25452b31db2b2f8b6f42643a9392f4 (diff)
In codegen:
2008-01-03 Rodrigo Kumpera <rkumpera@novell.com> * EmiteByteInstr.cs: Fixed typo in class name. In parser: 2008-01-03 Rodrigo Kumpera <rkumpera@novell.com> * ILParser.jay: Fixed typo in EmitByteInstr class name. svn path=/trunk/mcs/; revision=92210
Diffstat (limited to 'mcs/ilasm')
-rw-r--r--mcs/ilasm/codegen/ChangeLog6
-rw-r--r--mcs/ilasm/codegen/EmitByteInstr.cs4
-rw-r--r--mcs/ilasm/parser/ChangeLog4
-rw-r--r--mcs/ilasm/parser/ILParser.jay2
4 files changed, 12 insertions, 4 deletions
diff --git a/mcs/ilasm/codegen/ChangeLog b/mcs/ilasm/codegen/ChangeLog
index e10aac69033..47d7661b851 100644
--- a/mcs/ilasm/codegen/ChangeLog
+++ b/mcs/ilasm/codegen/ChangeLog
@@ -1,6 +1,10 @@
+2008-01-03 Rodrigo Kumpera <rkumpera@novell.com>
+
+ * EmiteByteInstr.cs: Fixed typo in class name.
+
2007-12-31 Rodrigo Kumpera <rkumpera@novell.com>
- * EmiteByteInst.cs: added. Implements support
+ * EmiteByteInstr.cs: added. Implements support
for the .emitbyte directive.
2007-12-31 Rodrigo Kumpera <rkumpera@novell.com>
diff --git a/mcs/ilasm/codegen/EmitByteInstr.cs b/mcs/ilasm/codegen/EmitByteInstr.cs
index e6778fe3500..c8fe3996fa5 100644
--- a/mcs/ilasm/codegen/EmitByteInstr.cs
+++ b/mcs/ilasm/codegen/EmitByteInstr.cs
@@ -13,11 +13,11 @@ using System.Collections;
namespace Mono.ILASM {
- public class EmitByteIntr : IInstr {
+ public class EmitByteInstr : IInstr {
private int value;
- public EmitByteIntr (int value, Location loc)
+ public EmitByteInstr (int value, Location loc)
: base (loc)
{
this.value = value;
diff --git a/mcs/ilasm/parser/ChangeLog b/mcs/ilasm/parser/ChangeLog
index ed7a968c887..48fd2e2502f 100644
--- a/mcs/ilasm/parser/ChangeLog
+++ b/mcs/ilasm/parser/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-03 Rodrigo Kumpera <rkumpera@novell.com>
+
+ * ILParser.jay: Fixed typo in EmitByteInstr class name.
+
2007-12-31 Rodrigo Kumpera <rkumpera@novell.com>
* ILParser.jay: Implement .emitbyte directive
diff --git a/mcs/ilasm/parser/ILParser.jay b/mcs/ilasm/parser/ILParser.jay
index 5e417341ecf..e98debf2c4c 100644
--- a/mcs/ilasm/parser/ILParser.jay
+++ b/mcs/ilasm/parser/ILParser.jay
@@ -2077,7 +2077,7 @@ method_decls : /* EMPTY */
method_decl : D_EMITBYTE int32
{
codegen.CurrentMethodDef.AddInstr (new
- EmitByteIntr ((int) $2, tokenizer.Location));
+ EmitByteInstr ((int) $2, tokenizer.Location));
}
| D_MAXSTACK int32