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

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