From d4e0bdd7b7949072c6bc47e07301fce8ab5a96af Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Wed, 21 Oct 2020 23:59:37 +0100 Subject: [PATCH] Remove hotpath attr --- src/ImageSharp/Common/Helpers/Vector4Utilities.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageSharp/Common/Helpers/Vector4Utilities.cs b/src/ImageSharp/Common/Helpers/Vector4Utilities.cs index 5ae7ac1b7..0137d0256 100644 --- a/src/ImageSharp/Common/Helpers/Vector4Utilities.cs +++ b/src/ImageSharp/Common/Helpers/Vector4Utilities.cs @@ -61,7 +61,7 @@ namespace SixLabors.ImageSharp /// Bulk variant of /// /// The span of vectors - [MethodImpl(InliningOptions.HotPath | InliningOptions.ShortMethod)] + [MethodImpl(InliningOptions.ShortMethod)] public static void Premultiply(Span vectors) { #if SUPPORTS_RUNTIME_INTRINSICS @@ -107,7 +107,7 @@ namespace SixLabors.ImageSharp /// Bulk variant of /// /// The span of vectors - [MethodImpl(InliningOptions.HotPath | InliningOptions.ShortMethod)] + [MethodImpl(InliningOptions.ShortMethod)] public static void UnPremultiply(Span vectors) { #if SUPPORTS_RUNTIME_INTRINSICS