Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix test
  • Loading branch information
AndyAyersMS committed Nov 20, 2021
commit 78d5ad9aa19ad168f7e11da1f4ee1b47823415a0
4 changes: 2 additions & 2 deletions src/tests/JIT/opt/OSR/handlerloop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ class OSRHandlerLoop
public static int Main()
{
int result = 0;
int expected = 704982705;
int expected = 0;
try
{
result++;
expected = 100000;
expected = 704982705;
}
finally
{
Expand Down