Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Add MethodImplAttributes.AggressiveOptimization #20274

Merged
merged 1 commit into from
Oct 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down