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/Compiler/DependencyAnalysis/Target_ARM64/ARM64Emitter.cs')
-rw-r--r--src/coreclr/tools/Common/Compiler/DependencyAnalysis/Target_ARM64/ARM64Emitter.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coreclr/tools/Common/Compiler/DependencyAnalysis/Target_ARM64/ARM64Emitter.cs b/src/coreclr/tools/Common/Compiler/DependencyAnalysis/Target_ARM64/ARM64Emitter.cs
index 895f2f9d1a0..7ef040f23c2 100644
--- a/src/coreclr/tools/Common/Compiler/DependencyAnalysis/Target_ARM64/ARM64Emitter.cs
+++ b/src/coreclr/tools/Common/Compiler/DependencyAnalysis/Target_ARM64/ARM64Emitter.cs
@@ -175,11 +175,11 @@ namespace ILCompiler.DependencyAnalysis.ARM64
uint offset = symbol.RepresentsIndirectionCell ? 6u : 2u;
Builder.EmitUInt(0b01010100_0000000000000000000_0_0001u | offset << 5);
-
+
EmitJMP(symbol);
}
- private bool InSignedByteRange(int i)
+ private static bool InSignedByteRange(int i)
{
return i == (int)(sbyte)i;
}