@@ -66,12 +66,12 @@ let GetIntEncodingClass (integerSizeInBytes:BigInteger) (alignment: AcnAlignment
6666 | PosInt, Fixed( fixedSizeInBits) , BigEndianness when fixedSizeInBits = 8 I ->
6767 match p.endiannessProp with
6868 | Some BigEndianness ->
69- let errMsg = " endianness property has not effect here.\n Little/big endian can be applied only for fixed size encodings and size must be 16 or 32 or 64\n "
69+ let errMsg = " endianness property has no effect here.\n Little/big endian can be applied only for fixed size encodings and size must be 16 or 32 or 64\n "
7070 Console.Error.WriteLine( AntlrParse.formatSemanticWarning errLoc errMsg)
7171 | _ -> ()
7272 PositiveInteger_ ConstSize_ 8, 8 I, 8 I
7373 | PosInt, Fixed( fixedSizeInBits) , LittleEndianness when fixedSizeInBits = 8 I ->
74- let errMsg = " endianness property has not effect here.\n Little/big endian can be applied only for fixed size encodings and size must be 16 or 32 or 64\n "
74+ let errMsg = " endianness property has no effect here.\n Little/big endian can be applied only for fixed size encodings and size must be 16 or 32 or 64\n "
7575 Console.Error.WriteLine( AntlrParse.formatSemanticWarning errLoc errMsg)
7676 PositiveInteger_ ConstSize_ 8, 8 I, 8 I
7777 | PosInt, Fixed( fixedSizeInBits), BigEndianness when fixedSizeInBits = 16 I-> PositiveInteger_ ConstSize_ big_ endian_ 16, 16 I, 16 I
@@ -87,12 +87,12 @@ let GetIntEncodingClass (integerSizeInBytes:BigInteger) (alignment: AcnAlignment
8787 | TwosComplement, Fixed( fixedSizeInBits) , BigEndianness when fixedSizeInBits = 8 I ->
8888 match p.endiannessProp with
8989 | Some BigEndianness ->
90- let errMsg = " endianness property has not effect here.\n Little/big endian can be applied only for fixed size encodings and size must be 16 or 32 or 64\n "
90+ let errMsg = " endianness property has no effect here.\n Little/big endian can be applied only for fixed size encodings and size must be 16 or 32 or 64\n "
9191 Console.Error.WriteLine( AntlrParse.formatSemanticWarning errLoc errMsg)
9292 | _ -> ()
9393 TwosComplement_ ConstSize_ 8, 8 I, 8 I
9494 | TwosComplement, Fixed( fixedSizeInBits) , LittleEndianness when fixedSizeInBits = 8 I ->
95- let errMsg = " endianness property has not effect here.\n Little/big endian can be applied only for fixed size encodings and size must be 16 or 32 or 64\n "
95+ let errMsg = " endianness property has no effect here.\n Little/big endian can be applied only for fixed size encodings and size must be 16 or 32 or 64\n "
9696 Console.Error.WriteLine( AntlrParse.formatSemanticWarning errLoc errMsg)
9797 TwosComplement_ ConstSize_ 8, 8 I, 8 I
9898 | TwosComplement, Fixed( fixedSizeInBits), BigEndianness when fixedSizeInBits = 16 I -> TwosComplement_ ConstSize_ big_ endian_ 16, 16 I, 16 I
0 commit comments