diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-05-23 12:57:28 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-05-23 12:57:28 -0300 |
| commit | 30829fce52251bd52dc37a8c2157cf05569e1bb3 (patch) | |
| tree | e110b8aee7250d2b33ac5e6dfb9e42d014f90511 | |
| parent | e78737089c7270458228aaa08a591cc9dd42936c (diff) | |
Fix wrong type on CMTST instruction
| -rw-r--r-- | ChocolArm64/Instruction/AInstEmitSimdCmp.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ChocolArm64/Instruction/AInstEmitSimdCmp.cs b/ChocolArm64/Instruction/AInstEmitSimdCmp.cs index 8a8376b2..3ffab1e8 100644 --- a/ChocolArm64/Instruction/AInstEmitSimdCmp.cs +++ b/ChocolArm64/Instruction/AInstEmitSimdCmp.cs @@ -79,7 +79,7 @@ namespace ChocolArm64.Instruction Context.Emit(OpCodes.And); - Context.EmitLdc_I4(0); + Context.EmitLdc_I8(0); Context.Emit(OpCodes.Bne_Un_S, LblTrue); |
