Skip to content

Commit

Permalink
Fix the regression test to not be called Main
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding committed Mar 29, 2024
1 parent 45c056f commit 9b2c311
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
using System.Runtime.Intrinsics;
using Xunit;

public static class Runtime_98068
public static class Runtime_100404
{
[Fact]
public static void Main(string[] args)
[MethodImpl(MethodImplOptions.NoInlining)]
public static void TestMultiplyVector128DoubleByConstant()
{
Vector128<double> result = Map(Vector128<double>.One, new FloatPoint(2.0, 3.0));
Assert.Equal(2.0, result[0]);
Expand Down

0 comments on commit 9b2c311

Please sign in to comment.