From 8edfb2bc7b8507d0ef51f0544eb32a65f0bf54a1 Mon Sep 17 00:00:00 2001 From: Marco Carvalho Date: Sun, 13 Aug 2023 19:07:57 -0300 Subject: "static readonly" constants should be "const" instead (#5560) * "static readonly" constants should be "const" instead * change fields to PascalCase --- src/ARMeilleure/Instructions/InstEmitSimdHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ARMeilleure/Instructions/InstEmitSimdHelper.cs') 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) { -- cgit v1.2.3