summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-03-21 15:10:30 +0900
committerJonghyun Park <parjong@gmail.com>2017-03-21 15:10:30 +0900
commit325332e383e698f0f1262a7f1b15586380e406dd (patch)
tree4d127e066ccc0a9dbb0a6269097f726db2b84571 /src
parent281da0a152ff5dc65b4bebcc95d19ec8e4a4508e (diff)
downloadcoreclr-325332e383e698f0f1262a7f1b15586380e406dd.tar.gz
coreclr-325332e383e698f0f1262a7f1b15586380e406dd.tar.bz2
coreclr-325332e383e698f0f1262a7f1b15586380e406dd.zip
Fix bogus assert in resolveVirtualMethodHelper and update related ilproj
Diffstat (limited to 'src')
-rw-r--r--src/vm/jitinterface.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vm/jitinterface.cpp b/src/vm/jitinterface.cpp
index 1639e2df19..4b9f2f85e4 100644
--- a/src/vm/jitinterface.cpp
+++ b/src/vm/jitinterface.cpp
@@ -8796,7 +8796,6 @@ static CORINFO_METHOD_HANDLE resolveVirtualMethodHelper(MethodDesc* callerMethod
// The base method should be in the base vtable
WORD slot = pBaseMD->GetSlot();
_ASSERTE(slot < pBaseMT->GetNumVirtuals());
- _ASSERTE(pBaseMD == pBaseMT->GetMethodDescForSlot(slot));
// Fetch the method that would be invoked if the class were
// exactly derived class. It is up to the jit to determine whether