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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/TypeSystem/IL/ILStackHelper.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/IL/ILStackHelper.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/IL/ILStackHelper.cs b/src/coreclr/tools/Common/TypeSystem/IL/ILStackHelper.cs
index 19c643256b4..1204f1b6655 100644
--- a/src/coreclr/tools/Common/TypeSystem/IL/ILStackHelper.cs
+++ b/src/coreclr/tools/Common/TypeSystem/IL/ILStackHelper.cs
@@ -24,7 +24,7 @@ namespace Internal.IL
/// </summary>
public static int ComputeMaxStack(this MethodIL methodIL)
{
- const int StackHeightNotSet = Int32.MinValue;
+ const int StackHeightNotSet = int.MinValue;
byte[] ilbytes = methodIL.GetILBytes();
int currentOffset = 0;
@@ -278,7 +278,7 @@ namespace Internal.IL
stackHeight = StackHeightNotSet;
}
break;
-
+
case ILOpcode.call:
case ILOpcode.calli:
case ILOpcode.callvirt: