Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTlakaelel Axayakatl Ceja <tlakaelel_axayakatl@outlook.com>2022-09-01 23:02:43 +0300
committerGitHub <noreply@github.com>2022-09-01 23:02:43 +0300
commitab2d195f169a08bf8eb978b472b2d3aca61b0a46 (patch)
tree4e441a8841728347e13d9a14f0b457340d134ef1 /src/coreclr/tools/Common/JitInterface/CorInfoTypes.cs
parent7a45201181d37329b7ab0bee541ed7c42b5d94b6 (diff)
Run code quality analyzers in the coreclr/tools directory (#74825)
Run codeanalysis analyzers in the coreclr/tools directory
Diffstat (limited to 'src/coreclr/tools/Common/JitInterface/CorInfoTypes.cs')
-rw-r--r--src/coreclr/tools/Common/JitInterface/CorInfoTypes.cs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/coreclr/tools/Common/JitInterface/CorInfoTypes.cs b/src/coreclr/tools/Common/JitInterface/CorInfoTypes.cs
index 4d054a10744..66fac586cb3 100644
--- a/src/coreclr/tools/Common/JitInterface/CorInfoTypes.cs
+++ b/src/coreclr/tools/Common/JitInterface/CorInfoTypes.cs
@@ -5,7 +5,6 @@ using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Internal.Pgo;
-using Internal.TypeSystem;
namespace Internal.JitInterface
{
@@ -889,10 +888,10 @@ namespace Internal.JitInterface
[StructLayout(LayoutKind.Sequential)]
public unsafe struct CORINFO_TAILCALL_HELPERS
{
- CORINFO_TAILCALL_HELPERS_FLAGS flags;
- CORINFO_METHOD_STRUCT_* hStoreArgs;
- CORINFO_METHOD_STRUCT_* hCallTarget;
- CORINFO_METHOD_STRUCT_* hDispatcher;
+ private CORINFO_TAILCALL_HELPERS_FLAGS flags;
+ private CORINFO_METHOD_STRUCT_* hStoreArgs;
+ private CORINFO_METHOD_STRUCT_* hCallTarget;
+ private CORINFO_METHOD_STRUCT_* hDispatcher;
};
public enum CORINFO_THIS_TRANSFORM
@@ -1432,7 +1431,7 @@ namespace Internal.JitInterface
public struct CORJIT_FLAGS
{
- private UInt64 _corJitFlags;
+ private ulong _corJitFlags;
public InstructionSetFlags InstructionSetFlags;
public void Reset()