// 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 { /// /// An attribute that can be attached to JIT Intrinsic methods/properties /// [AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Property)] internal class JitIntrinsicAttribute : Attribute { } }