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/VectorFieldLayoutAlgorithm.cs')
-rw-r--r--src/coreclr/tools/Common/Compiler/VectorFieldLayoutAlgorithm.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coreclr/tools/Common/Compiler/VectorFieldLayoutAlgorithm.cs b/src/coreclr/tools/Common/Compiler/VectorFieldLayoutAlgorithm.cs
index a4e49bde5fe..e2be8774058 100644
--- a/src/coreclr/tools/Common/Compiler/VectorFieldLayoutAlgorithm.cs
+++ b/src/coreclr/tools/Common/Compiler/VectorFieldLayoutAlgorithm.cs
@@ -36,7 +36,7 @@ namespace ILCompiler
{
if (defType.Context.Target.Architecture == TargetArchitecture.ARM)
{
- // The Procedure Call Standard for ARM defaults to 8-byte alignment for __m128
+ // The Procedure Call Standard for ARM defaults to 8-byte alignment for __m128
alignment = new LayoutInt(8);
}
else
@@ -50,13 +50,13 @@ namespace ILCompiler
if (defType.Context.Target.Architecture == TargetArchitecture.ARM)
{
- // No such type exists for the Procedure Call Standard for ARM. We will default
+ // No such type exists for the Procedure Call Standard for ARM. We will default
// to the same alignment as __m128, which is supported by the ABI.
alignment = new LayoutInt(8);
}
else if (defType.Context.Target.Architecture == TargetArchitecture.ARM64)
{
- // The Procedure Call Standard for ARM 64-bit (with SVE support) defaults to
+ // The Procedure Call Standard for ARM 64-bit (with SVE support) defaults to
// 16-byte alignment for __m256.
alignment = new LayoutInt(16);
}