diff --git a/src/coreclr/nativeaot/BuildIntegration/Microsoft.NETCore.Native.targets b/src/coreclr/nativeaot/BuildIntegration/Microsoft.NETCore.Native.targets
index 5e4c002898f643..e756e58cb2d2af 100644
--- a/src/coreclr/nativeaot/BuildIntegration/Microsoft.NETCore.Native.targets
+++ b/src/coreclr/nativeaot/BuildIntegration/Microsoft.NETCore.Native.targets
@@ -326,7 +326,8 @@ The .NET Foundation licenses this file to you under the MIT license.
-
+
+
diff --git a/src/tests/nativeaot/SmokeTests/HardwareIntrinsics/Program.cs b/src/tests/nativeaot/SmokeTests/HardwareIntrinsics/Program.cs
index d46d9071bea610..e628938c57db82 100644
--- a/src/tests/nativeaot/SmokeTests/HardwareIntrinsics/Program.cs
+++ b/src/tests/nativeaot/SmokeTests/HardwareIntrinsics/Program.cs
@@ -21,17 +21,8 @@ static int Main()
Console.WriteLine("****************************************************");
long lowerBound, upperBound;
- if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
- {
- const int Meg = 1024 * 1024;
- lowerBound = 2 * Meg; // 2 MB
- upperBound = 4 * Meg; // 4 MB
- }
- else
- {
- lowerBound = 1300 * 1024; // ~1.3 MB
- upperBound = 1750 * 1024; // ~1.75 MB
- }
+ lowerBound = 1300 * 1024; // ~1.3 MB
+ upperBound = 1750 * 1024; // ~1.75 MB
if (fileSize < lowerBound || fileSize > upperBound)
{