From 6c6bc2ca7f29a75f87521db12dca543bf9f96bda Mon Sep 17 00:00:00 2001 From: LDj3SNuD <35856442+LDj3SNuD@users.noreply.github.com> Date: Sat, 13 Oct 2018 02:31:56 +0200 Subject: [PATCH] Address PR feedback. --- ChocolArm64/Instruction/AInstEmitSimdShift.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ChocolArm64/Instruction/AInstEmitSimdShift.cs b/ChocolArm64/Instruction/AInstEmitSimdShift.cs index cde1c585ce..a5ecd893fb 100644 --- a/ChocolArm64/Instruction/AInstEmitSimdShift.cs +++ b/ChocolArm64/Instruction/AInstEmitSimdShift.cs @@ -38,9 +38,9 @@ namespace ChocolArm64.Instruction EmitLdvecWithUnsignedCast(Context, Op.Rn, Op.Size); - Context.EmitLdc_I4(GetImmShl(Op)); + Context.EmitLdc_I4(GetImmShl(Op)); - Context.EmitCall(typeof(Sse2).GetMethod(nameof(Sse2.ShiftLeftLogical), Types)); + Context.EmitCall(typeof(Sse2).GetMethod(nameof(Sse2.ShiftLeftLogical), Types)); EmitStvecWithUnsignedCast(Context, Op.Rd, Op.Size); @@ -197,9 +197,9 @@ namespace ChocolArm64.Instruction EmitLdvecWithSignedCast(Context, Op.Rn, Op.Size); - Context.EmitLdc_I4(GetImmShr(Op)); + Context.EmitLdc_I4(GetImmShr(Op)); - Context.EmitCall(typeof(Sse2).GetMethod(nameof(Sse2.ShiftRightArithmetic), Types)); + Context.EmitCall(typeof(Sse2).GetMethod(nameof(Sse2.ShiftRightArithmetic), Types)); EmitStvecWithSignedCast(Context, Op.Rd, Op.Size); @@ -291,9 +291,9 @@ namespace ChocolArm64.Instruction EmitLdvecWithUnsignedCast(Context, Op.Rn, Op.Size); - Context.EmitLdc_I4(GetImmShr(Op)); + Context.EmitLdc_I4(GetImmShr(Op)); - Context.EmitCall(typeof(Sse2).GetMethod(nameof(Sse2.ShiftRightLogical), Types)); + Context.EmitCall(typeof(Sse2).GetMethod(nameof(Sse2.ShiftRightLogical), Types)); EmitStvecWithUnsignedCast(Context, Op.Rd, Op.Size);