namespace ARMeilleure.CodeGen.Arm64
{
struct IntrinsicInfo
public uint Inst { get; }
public IntrinsicType Type { get; }
public IntrinsicInfo(uint inst, IntrinsicType type)
Inst = inst;
Type = type;
}