Skip to content

Commit

Permalink
Temporary instrumentation for #76280 (#77365)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotas authored Oct 24, 2022
1 parent 33cb335 commit e232f79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ private void ValidateResult(Int64[] firstOp, Double[] result, [CallerMemberName]

if (result[0] != (double)(firstOp[0]))
{
Environment.FailFast("Temporary instrumentation to diagnose https://github.com/dotnet/runtime/issues/76280");
succeeded = false;
}
else
Expand All @@ -293,6 +294,7 @@ private void ValidateResult(Int64[] firstOp, Double[] result, [CallerMemberName]
{
if (result[i] != (double)(firstOp[i]))
{
Environment.FailFast("Temporary instrumentation to diagnose https://github.com/dotnet/runtime/issues/76280");
succeeded = false;
break;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ private void ValidateResult(UInt64[] firstOp, Double[] result, [CallerMemberName

if (result[0] != (double)(firstOp[0]))
{
Environment.FailFast("Temporary instrumentation to diagnose https://github.com/dotnet/runtime/issues/76280");
succeeded = false;
}
else
Expand All @@ -293,6 +294,7 @@ private void ValidateResult(UInt64[] firstOp, Double[] result, [CallerMemberName
{
if (result[i] != (double)(firstOp[i]))
{
Environment.FailFast("Temporary instrumentation to diagnose https://github.com/dotnet/runtime/issues/76280");
succeeded = false;
break;
}
Expand Down

0 comments on commit e232f79

Please sign in to comment.