delete comment

This commit is contained in:
MS-DOS1999 2018-07-20 11:16:59 +02:00
parent 45f169d0b0
commit a4a1a5011b

View file

@ -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;