Skip to content

Commit

Permalink
F8 unwind code was incorrectly parsed as "F0-F4 code" in DumpUnwindIn…
Browse files Browse the repository at this point in the history
…fo in src/jit/unwindarm.cpp (dotnet/coreclr#27298)

Commit migrated from dotnet/coreclr@d05348c
  • Loading branch information
echesakov authored Oct 21, 2019
1 parent aa72cee commit 3dbb655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/src/jit/unwindarm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2479,7 +2479,7 @@ void DumpUnwindInfo(Compiler* comp,
DumpOpsize(4, 32);
}
}
else if ((b1 & 0xF7) == 0xF0)
else if ((b1 >= 0xF0) && (b1 <= 0xF4))
{
// F0-F4
x = b1 & 0x7;
Expand Down

0 comments on commit 3dbb655

Please sign in to comment.