Skip to content

Commit

Permalink
[mono][llvm] Fix an assert. (#85950)
Browse files Browse the repository at this point in the history
Fixes #85724.
  • Loading branch information
vargaz authored May 10, 2023
1 parent 52b81af commit f2d2a65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mono/mono/mini/mini-llvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -11753,7 +11753,8 @@ MONO_RESTORE_WARNING
case OP_TAILCALL:
case OP_TAILCALL_REG:
case OP_TAILCALL_MEMBASE:
case OP_CKFINITE: {
case OP_CKFINITE:
case OP_LOAD_GOTADDR: {
char reason [128];

sprintf (reason, "opcode %s", mono_inst_name (ins->opcode));
Expand Down

0 comments on commit f2d2a65

Please sign in to comment.