Przeglądaj źródła

Fix wrong type on CMTST instruction

gdkchan 8 lat temu
rodzic
commit
30829fce52
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      ChocolArm64/Instruction/AInstEmitSimdCmp.cs

+ 1 - 1
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);