Skip to content

Commit

Permalink
new intrinsic type support (dotnet/coreclr#15340)
Browse files Browse the repository at this point in the history
Signed-off-by: dotnet-bot-corefx-mirror <dotnet-bot@microsoft.com>
  • Loading branch information
FeiPengIntel authored and safern committed Jan 16, 2018
1 parent e9e141d commit 0f77d19
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ namespace System.Runtime.CompilerServices
{
// Calls to methods or references to fields marked with this attribute may be replaced at
// some call sites with jit intrinsic expansions.
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Field, Inherited = false)]
// Types marked with this attribute may be specially treated by the rumtime/compiler.
[AttributeUsage(AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Field, Inherited = false)]
internal sealed class IntrinsicAttribute : Attribute
{
}
Expand Down

0 comments on commit 0f77d19

Please sign in to comment.