From da6498e6c1013dd38d33e782bc777bd89aa0f0ee Mon Sep 17 00:00:00 2001 From: Jan Vorlicek Date: Fri, 5 Oct 2018 03:08:51 +0200 Subject: Remove context statics stuff (#20256) * Remove context statics stuff part 1 This change removes all context statics stuff from the runtime since context statics are not supported and this code was obsolete. * Remove context statics stuff from the debugger code --- src/vm/prestub.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vm/prestub.cpp') diff --git a/src/vm/prestub.cpp b/src/vm/prestub.cpp index 1893cf6c23..cec6447c2e 100644 --- a/src/vm/prestub.cpp +++ b/src/vm/prestub.cpp @@ -2885,7 +2885,7 @@ PCODE DynamicHelperFixup(TransitionBlock * pTransitionBlock, TADDR * pCell, DWOR { if (pFD != NULL) { - if (pFD->IsRVA() || pFD->IsContextStatic()) + if (pFD->IsRVA()) { _ASSERTE(!"Fast getter for rare kinds of static fields"); } -- cgit v1.2.3