aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Translation/ILGeneratorEx.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-07-03 03:31:48 -0300
committerGitHub <noreply@github.com>2018-07-03 03:31:48 -0300
commit741773910d61a75bd5466265e5dd825d55a98e7c (patch)
tree6d2a917f4dd4e069177397e65dffe973511067af /ChocolArm64/Translation/ILGeneratorEx.cs
parentc228cf320d476303da679066c67c3a8c9c6aa3e1 (diff)
Add SMAXP, SMINP, UMAX, UMAXP, UMIN and UMINP cpu instructions (#200)
Diffstat (limited to 'ChocolArm64/Translation/ILGeneratorEx.cs')
-rw-r--r--ChocolArm64/Translation/ILGeneratorEx.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ChocolArm64/Translation/ILGeneratorEx.cs b/ChocolArm64/Translation/ILGeneratorEx.cs
index 52eb4746..40c6efa4 100644
--- a/ChocolArm64/Translation/ILGeneratorEx.cs
+++ b/ChocolArm64/Translation/ILGeneratorEx.cs
@@ -63,7 +63,7 @@ namespace ChocolArm64
else
{
throw new ArgumentOutOfRangeException(nameof(Index));
- }
+ }
}
public static void EmitLdloc(this ILGenerator Generator, int Index)
@@ -89,7 +89,7 @@ namespace ChocolArm64
throw new ArgumentOutOfRangeException(nameof(Index));
}
break;
- }
+ }
}
public static void EmitStloc(this ILGenerator Generator, int Index)
@@ -123,7 +123,7 @@ namespace ChocolArm64
for (int Index = 0; Index < Count; Index++)
{
Generator.EmitLdarg(Index);
- }
+ }
}
}
}