Skip to content

Commit

Permalink
Adding a case requiring RuntimeJit (#36772)
Browse files Browse the repository at this point in the history
Handle CORINFO_HELP_THROW_NOT_IMPLEMENTED
  • Loading branch information
mangod9 authored May 21, 2020
1 parent 5b7d631 commit 4eaccd6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -626,6 +626,8 @@ private ISymbolNode GetHelperFtnUncached(CorInfoHelpFunc ftnNum)
case CorInfoHelpFunc.CORINFO_HELP_TYPEHANDLE_TO_RUNTIMETYPE_MAYBENULL:
case CorInfoHelpFunc.CORINFO_HELP_TYPEHANDLE_TO_RUNTIMETYPEHANDLE_MAYBENULL:
case CorInfoHelpFunc.CORINFO_HELP_GETREFANY:
// For Vector256.Create and similar cases
case CorInfoHelpFunc.CORINFO_HELP_THROW_NOT_IMPLEMENTED:
throw new RequiresRuntimeJitException(ftnNum.ToString());

default:
Expand Down

0 comments on commit 4eaccd6

Please sign in to comment.