Skip to content

Commit

Permalink
Merge pull request dotnet#546 from AndyAyersMS/MoreIntrinsics
Browse files Browse the repository at this point in the history
Add GetManagedThreadId to the list of intrinsics handled as normal calls...
  • Loading branch information
AndyAyersMS committed May 6, 2015
2 parents b839d95 + 033f347 commit e793ba7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/Reader/readerir.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4141,6 +4141,10 @@ IRNode *GenIR::genCall(ReaderCallTargetData *CallTargetInfo, bool MayThrow,
// For now just treat as a normal call.
break;
}
case CORINFO_INTRINSIC_GetManagedThreadId: {
// For now just treat as a normal call.
break;
}
default:
throw NotYetImplementedException("Call intrinsic");
}
Expand Down

0 comments on commit e793ba7

Please sign in to comment.