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