From a4a1a5011b0e5cb74643e76a6be343b256cd511d Mon Sep 17 00:00:00 2001 From: MS-DOS1999 Date: Fri, 20 Jul 2018 11:16:59 +0200 Subject: [PATCH] delete comment --- ChocolArm64/Instruction/AInstEmitSimdHelper.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/ChocolArm64/Instruction/AInstEmitSimdHelper.cs b/ChocolArm64/Instruction/AInstEmitSimdHelper.cs index 853df2f740..22f356bc7b 100644 --- a/ChocolArm64/Instruction/AInstEmitSimdHelper.cs +++ b/ChocolArm64/Instruction/AInstEmitSimdHelper.cs @@ -897,7 +897,6 @@ namespace ChocolArm64.Instruction Part = !Scalar && (Op.RegisterSize == ARegisterSize.SIMD128) ? Elems : 0; } - //long TMaxValue = SignedDst ? (1 << (ESize - 1)) - 1 : (1L << ESize) - 1L; long TMaxValue = SignedDst ? (1 << (ESize - 1)) - 1 : (long)(~0UL >> (64 - ESize)); long TMinValue = SignedDst ? -((1 << (ESize - 1))) : 0;