Add MethodImplAttributes.AggressiveOptimization (dotnet/coreclr#20274)

API review: https://github.com/dotnet/corefx/issues/32628

Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
This commit is contained in:
Koundinya Veluri 2018-10-20 08:51:41 -07:00 коммит произвёл Michal Strehovský
Родитель 495dcf45ae
Коммит af68631634
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -31,6 +31,7 @@ namespace System.Reflection
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,
}