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:
Diffstat (limited to 'src/coreclr/tools/Common/TypeSystem/IL/NativeAotILProvider.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/IL/NativeAotILProvider.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/IL/NativeAotILProvider.cs b/src/coreclr/tools/Common/TypeSystem/IL/NativeAotILProvider.cs
index 5e3f6e62ec8..2de9aa4f8c0 100644
--- a/src/coreclr/tools/Common/TypeSystem/IL/NativeAotILProvider.cs
+++ b/src/coreclr/tools/Common/TypeSystem/IL/NativeAotILProvider.cs
@@ -14,7 +14,7 @@ namespace Internal.IL
{
public sealed class NativeAotILProvider : ILProvider
{
- private MethodIL TryGetRuntimeImplementedMethodIL(MethodDesc method)
+ private static MethodIL TryGetRuntimeImplementedMethodIL(MethodDesc method)
{
// Provides method bodies for runtime implemented methods. It can return null for
// methods that are treated specially by the codegen.
@@ -36,7 +36,7 @@ namespace Internal.IL
/// It can return null if it's not an intrinsic recognized by the compiler,
/// but an intrinsic e.g. recognized by codegen.
/// </summary>
- private MethodIL TryGetIntrinsicMethodIL(MethodDesc method)
+ private static MethodIL TryGetIntrinsicMethodIL(MethodDesc method)
{
Debug.Assert(method.IsIntrinsic);
@@ -108,7 +108,7 @@ namespace Internal.IL
/// are specialized per instantiation. It can return null if the intrinsic
/// is not recognized.
/// </summary>
- private MethodIL TryGetPerInstantiationIntrinsicMethodIL(MethodDesc method)
+ private static MethodIL TryGetPerInstantiationIntrinsicMethodIL(MethodDesc method)
{
Debug.Assert(method.IsIntrinsic);