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
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Reflection.Emit/ILGenerator.cs')
-rw-r--r--mcs/class/corlib/System.Reflection.Emit/ILGenerator.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/corlib/System.Reflection.Emit/ILGenerator.cs b/mcs/class/corlib/System.Reflection.Emit/ILGenerator.cs
index 2172b1e63f1..1c9c3f4c3d1 100644
--- a/mcs/class/corlib/System.Reflection.Emit/ILGenerator.cs
+++ b/mcs/class/corlib/System.Reflection.Emit/ILGenerator.cs
@@ -525,7 +525,7 @@ namespace System.Reflection.Emit {
emit_int (token);
if (opcode.StackBehaviourPop == StackBehaviour.Varpop)
- cur_stack -= con.GetParameterCount ();
+ cur_stack -= con.GetParametersCount ();
}
public virtual void Emit (OpCode opcode, double arg)
@@ -744,7 +744,7 @@ namespace System.Reflection.Emit {
cur_stack ++;
if (opcode.StackBehaviourPop == StackBehaviour.Varpop)
- cur_stack -= meth.GetParameterCount ();
+ cur_stack -= meth.GetParametersCount ();
}
private void Emit (OpCode opcode, MethodInfo method, int token)
@@ -762,7 +762,7 @@ namespace System.Reflection.Emit {
cur_stack ++;
if (opcode.StackBehaviourPop == StackBehaviour.Varpop)
- cur_stack -= method.GetParameterCount ();
+ cur_stack -= method.GetParametersCount ();
}
[CLSCompliant(false)]