Nit.
This commit is contained in:
parent
354a30370d
commit
743d74ec48
1 changed files with 3 additions and 1 deletions
|
@ -237,7 +237,9 @@ namespace ChocolArm64.Instructions
|
|||
{
|
||||
IOpCodeSimd64 op = (IOpCodeSimd64)context.CurrOp;
|
||||
|
||||
Type type = (op.Size & 1) == 0
|
||||
int sizeF = op.Size & 1;
|
||||
|
||||
Type type = sizeF == 0
|
||||
? typeof(SoftFloat32)
|
||||
: typeof(SoftFloat64);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue