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

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