Correct constant operand type on CSINC

This commit is contained in:
gdkchan 2019-05-29 21:47:51 -03:00
parent 0ca624a9da
commit 03993e4288

View file

@ -32,7 +32,7 @@ namespace ARMeilleure.Instructions
if (cselOp == CselOperation.Increment)
{
m = context.IAdd(m, Const(1));
m = context.IAdd(m, Const(m.Type, 1));
}
else if (cselOp == CselOperation.Invert)
{