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; } } }