diff options
author | Marco Carvalho <marcolucio27@gmail.com> | 2023-08-13 19:07:57 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-13 19:07:57 -0300 |
commit | 8edfb2bc7b8507d0ef51f0544eb32a65f0bf54a1 (patch) | |
tree | 0ec982255ae54fe4572dff777892ac1706857723 /src/ARMeilleure/Instructions | |
parent | ddefb4fff44509ca99628abf010ad6648a6503d5 (diff) |
"static readonly" constants should be "const" instead (#5560)1.1.984
* "static readonly" constants should be "const" instead
* change fields to PascalCase
Diffstat (limited to 'src/ARMeilleure/Instructions')
-rw-r--r-- | src/ARMeilleure/Instructions/InstEmitSimdHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs b/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs index 0b552740..abd0d9ac 100644 --- a/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs +++ b/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs @@ -32,7 +32,7 @@ namespace ARMeilleure.Instructions 15L << 56 | 14L << 48 | 13L << 40 | 12L << 32 | 07L << 24 | 06L << 16 | 05L << 8 | 04L << 0, // S }; - public static readonly long ZeroMask = 128L << 56 | 128L << 48 | 128L << 40 | 128L << 32 | 128L << 24 | 128L << 16 | 128L << 8 | 128L << 0; + public const long ZeroMask = 128L << 56 | 128L << 48 | 128L << 40 | 128L << 32 | 128L << 24 | 128L << 16 | 128L << 8 | 128L << 0; public static ulong X86GetGf2p8LogicalShiftLeft(int shift) { |