aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs
blob: 302bf4d3c0e4eb623337513d01292bb587a3a95c (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;
        }
    }
}