aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Instruction/AInstEmitSimdCmp.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-04-06 01:41:54 -0300
committergdkchan <gab.dark.100@gmail.com>2018-04-06 01:41:54 -0300
commit36d9130592c7d45d50d9748f816b282c05e45967 (patch)
tree75fdec5d24eda4362aeeb9cbd521b0832dc93edf /ChocolArm64/Instruction/AInstEmitSimdCmp.cs
parent2fd718c163a6f8adfc189f16b829542fdde0261d (diff)
Add FMLS (vector) instruction
Diffstat (limited to 'ChocolArm64/Instruction/AInstEmitSimdCmp.cs')
-rw-r--r--ChocolArm64/Instruction/AInstEmitSimdCmp.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/ChocolArm64/Instruction/AInstEmitSimdCmp.cs b/ChocolArm64/Instruction/AInstEmitSimdCmp.cs
index 43e8e949..a71b6d42 100644
--- a/ChocolArm64/Instruction/AInstEmitSimdCmp.cs
+++ b/ChocolArm64/Instruction/AInstEmitSimdCmp.cs
@@ -140,26 +140,6 @@ namespace ChocolArm64.Instruction
EmitVectorFcmp(Context, OpCodes.Bgt_S);
}
- public static void Fcmhi_S(AILEmitterCtx Context)
- {
- EmitScalarFcmp(Context, OpCodes.Bgt_Un_S);
- }
-
- public static void Fcmhi_V(AILEmitterCtx Context)
- {
- EmitVectorFcmp(Context, OpCodes.Bgt_Un_S);
- }
-
- public static void Fcmhs_S(AILEmitterCtx Context)
- {
- EmitScalarFcmp(Context, OpCodes.Bge_Un_S);
- }
-
- public static void Fcmhs_V(AILEmitterCtx Context)
- {
- EmitVectorFcmp(Context, OpCodes.Bge_Un_S);
- }
-
public static void Fcmle_S(AILEmitterCtx Context)
{
EmitScalarFcmp(Context, OpCodes.Ble_S);