This commit is contained in:
LDj3SNuD 2019-04-23 15:10:39 +02:00 committed by GitHub
commit 743d74ec48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -237,7 +237,9 @@ namespace ChocolArm64.Instructions
{ {
IOpCodeSimd64 op = (IOpCodeSimd64)context.CurrOp; IOpCodeSimd64 op = (IOpCodeSimd64)context.CurrOp;
Type type = (op.Size & 1) == 0 int sizeF = op.Size & 1;
Type type = sizeF == 0
? typeof(SoftFloat32) ? typeof(SoftFloat32)
: typeof(SoftFloat64); : typeof(SoftFloat64);