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
Use Check instead of FatalCheck
Co-authored-by: Jan Kotas <[email protected]>
  • Loading branch information
jl0pd and jkotas authored Jul 30, 2022
commit 41aad1fe37466ded6ca8da80098d20d1830566ae
2 changes: 1 addition & 1 deletion src/coreclr/tools/ILVerification/ILImporter.Verify.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2582,7 +2582,7 @@ void ImportLocalAlloc()

var size = Pop();

FatalCheck(_stackTop == 0, VerifierError.LocallocStackNotEmpty);
Check(_stackTop == 0, VerifierError.LocallocStackNotEmpty);

CheckIsInteger(size);

Expand Down