diff --git a/src/Common/src/CoreLib/System/Reflection/MethodImplAttributes.cs b/src/Common/src/CoreLib/System/Reflection/MethodImplAttributes.cs index a1ed326002a6..b16f4a45756c 100644 --- a/src/Common/src/CoreLib/System/Reflection/MethodImplAttributes.cs +++ b/src/Common/src/CoreLib/System/Reflection/MethodImplAttributes.cs @@ -31,6 +31,7 @@ public enum MethodImplAttributes NoInlining = 0x0008, // Method may not be inlined. AggressiveInlining = 0x0100, // Method should be inlined if possible. NoOptimization = 0x0040, // Method may not be optimized. + AggressiveOptimization = 0x0200, // Method may contain hot code and should be aggressively optimized. MaxMethodImplVal = 0xffff, }