14 lines
467 B
C#
14 lines
467 B
C#
|
// Copyright (c) Microsoft. All rights reserved.
|
||
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||
|
|
||
|
namespace System.Numerics
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// An attribute that can be attached to JIT Intrinsic methods/properties
|
||
|
/// </summary>
|
||
|
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Property)]
|
||
|
internal class JitIntrinsicAttribute : Attribute
|
||
|
{
|
||
|
}
|
||
|
}
|