aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/CodeGen/Arm64/IntrinsicInfo.cs
blob: 956fc778da70e9eb54c179aa03757cdc80019a86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace ARMeilleure.CodeGen.Arm64
{
    readonly struct IntrinsicInfo
    {
        public uint Inst { get; }
        public IntrinsicType Type { get; }

        public IntrinsicInfo(uint inst, IntrinsicType type)
        {
            Inst = inst;
            Type = type;
        }
    }
}