@@ -869,7 +869,7 @@ VOID MethodTableBuilder::BuildInteropVTable_PlaceMembers(
869
869
bmtMethod->ppMethodDescList [i] = pNewMD;
870
870
871
871
// 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 );
873
873
874
874
// Non-virtual method
875
875
if (IsMdStatic (dwMemberAttrs) ||
@@ -938,7 +938,7 @@ VOID MethodTableBuilder::BuildInteropVTable_PlaceMembers(
938
938
}
939
939
}
940
940
941
- if (Classification & mdcMethodImpl )
941
+ if (Classification & mdfMethodImpl )
942
942
{ // If this method serves as the BODY of a MethodImpl specification, then
943
943
// we should iterate all the MethodImpl's for this class and see just how many
944
944
// of them this method participates in as the BODY.
@@ -2797,7 +2797,7 @@ VOID MethodTableBuilder::EnumerateClassMethods()
2797
2797
}
2798
2798
2799
2799
// Generic methods should always be mcInstantiated
2800
- if (!((numGenericMethodArgs == 0 ) || ((Classification & mdcClassification ) == mcInstantiated)))
2800
+ if (!((numGenericMethodArgs == 0 ) || ((Classification & mdfClassification ) == mcInstantiated)))
2801
2801
{
2802
2802
BuildMethodTableThrowException (BFA_GENERIC_METHODS_INST);
2803
2803
}
@@ -2806,7 +2806,7 @@ VOID MethodTableBuilder::EnumerateClassMethods()
2806
2806
// from the overrides.
2807
2807
for (DWORD impls = 0 ; impls < bmtMethodImpl->dwNumberMethodImpls ; impls++) {
2808
2808
if ((bmtMethodImpl->rgMethodImplTokens [impls].methodBody == tok) && !IsMdStatic (dwMemberAttrs)) {
2809
- Classification |= mdcMethodImpl ;
2809
+ Classification |= mdfMethodImpl ;
2810
2810
break ;
2811
2811
}
2812
2812
}
@@ -2830,7 +2830,7 @@ VOID MethodTableBuilder::EnumerateClassMethods()
2830
2830
2831
2831
// Set the index into the storage locations
2832
2832
BYTE impl;
2833
- if (Classification & mdcMethodImpl )
2833
+ if (Classification & mdfMethodImpl )
2834
2834
{
2835
2835
impl = METHOD_IMPL;
2836
2836
}
@@ -2840,25 +2840,25 @@ VOID MethodTableBuilder::EnumerateClassMethods()
2840
2840
}
2841
2841
2842
2842
BYTE type;
2843
- if ((Classification & mdcClassification ) == mcNDirect)
2843
+ if ((Classification & mdfClassification ) == mcNDirect)
2844
2844
{
2845
2845
type = METHOD_TYPE_NDIRECT;
2846
2846
}
2847
- else if ((Classification & mdcClassification ) == mcFCall)
2847
+ else if ((Classification & mdfClassification ) == mcFCall)
2848
2848
{
2849
2849
type = METHOD_TYPE_FCALL;
2850
2850
}
2851
- else if ((Classification & mdcClassification ) == mcEEImpl)
2851
+ else if ((Classification & mdfClassification ) == mcEEImpl)
2852
2852
{
2853
2853
type = METHOD_TYPE_EEIMPL;
2854
2854
}
2855
2855
#ifdef FEATURE_COMINTEROP
2856
- else if ((Classification & mdcClassification ) == mcComInterop)
2856
+ else if ((Classification & mdfClassification ) == mcComInterop)
2857
2857
{
2858
2858
type = METHOD_TYPE_INTEROP;
2859
2859
}
2860
2860
#endif // FEATURE_COMINTEROP
2861
- else if ((Classification & mdcClassification ) == mcInstantiated)
2861
+ else if ((Classification & mdfClassification ) == mcInstantiated)
2862
2862
{
2863
2863
type = METHOD_TYPE_INSTANTIATED;
2864
2864
}
0 commit comments