@@ -869,7 +869,7 @@ VOID MethodTableBuilder::BuildInteropVTable_PlaceMembers(
869869 bmtMethod->ppMethodDescList [i] = pNewMD;
870870
871871 // Make sure that fcalls have a 0 rva. This is assumed by the prejit fixup logic
872- _ASSERTE (((Classification & ~mdcMethodImpl ) != mcFCall) || dwDescrOffset == 0 );
872+ _ASSERTE (((Classification & ~mdfMethodImpl ) != mcFCall) || dwDescrOffset == 0 );
873873
874874 // Non-virtual method
875875 if (IsMdStatic (dwMemberAttrs) ||
@@ -938,7 +938,7 @@ VOID MethodTableBuilder::BuildInteropVTable_PlaceMembers(
938938 }
939939 }
940940
941- if (Classification & mdcMethodImpl )
941+ if (Classification & mdfMethodImpl )
942942 { // If this method serves as the BODY of a MethodImpl specification, then
943943 // we should iterate all the MethodImpl's for this class and see just how many
944944 // of them this method participates in as the BODY.
@@ -2797,7 +2797,7 @@ VOID MethodTableBuilder::EnumerateClassMethods()
27972797 }
27982798
27992799 // Generic methods should always be mcInstantiated
2800- if (!((numGenericMethodArgs == 0 ) || ((Classification & mdcClassification ) == mcInstantiated)))
2800+ if (!((numGenericMethodArgs == 0 ) || ((Classification & mdfClassification ) == mcInstantiated)))
28012801 {
28022802 BuildMethodTableThrowException (BFA_GENERIC_METHODS_INST);
28032803 }
@@ -2806,7 +2806,7 @@ VOID MethodTableBuilder::EnumerateClassMethods()
28062806 // from the overrides.
28072807 for (DWORD impls = 0 ; impls < bmtMethodImpl->dwNumberMethodImpls ; impls++) {
28082808 if ((bmtMethodImpl->rgMethodImplTokens [impls].methodBody == tok) && !IsMdStatic (dwMemberAttrs)) {
2809- Classification |= mdcMethodImpl ;
2809+ Classification |= mdfMethodImpl ;
28102810 break ;
28112811 }
28122812 }
@@ -2830,7 +2830,7 @@ VOID MethodTableBuilder::EnumerateClassMethods()
28302830
28312831 // Set the index into the storage locations
28322832 BYTE impl;
2833- if (Classification & mdcMethodImpl )
2833+ if (Classification & mdfMethodImpl )
28342834 {
28352835 impl = METHOD_IMPL;
28362836 }
@@ -2840,25 +2840,25 @@ VOID MethodTableBuilder::EnumerateClassMethods()
28402840 }
28412841
28422842 BYTE type;
2843- if ((Classification & mdcClassification ) == mcNDirect)
2843+ if ((Classification & mdfClassification ) == mcNDirect)
28442844 {
28452845 type = METHOD_TYPE_NDIRECT;
28462846 }
2847- else if ((Classification & mdcClassification ) == mcFCall)
2847+ else if ((Classification & mdfClassification ) == mcFCall)
28482848 {
28492849 type = METHOD_TYPE_FCALL;
28502850 }
2851- else if ((Classification & mdcClassification ) == mcEEImpl)
2851+ else if ((Classification & mdfClassification ) == mcEEImpl)
28522852 {
28532853 type = METHOD_TYPE_EEIMPL;
28542854 }
28552855#ifdef FEATURE_COMINTEROP
2856- else if ((Classification & mdcClassification ) == mcComInterop)
2856+ else if ((Classification & mdfClassification ) == mcComInterop)
28572857 {
28582858 type = METHOD_TYPE_INTEROP;
28592859 }
28602860#endif // FEATURE_COMINTEROP
2861- else if ((Classification & mdcClassification ) == mcInstantiated)
2861+ else if ((Classification & mdfClassification ) == mcInstantiated)
28622862 {
28632863 type = METHOD_TYPE_INSTANTIATED;
28642864 }
0 commit comments