IntrinsicInfo.cs 293 B

1234567891011121314
  1. namespace ARMeilleure.CodeGen.Arm64
  2. {
  3. struct IntrinsicInfo
  4. {
  5. public uint Inst { get; }
  6. public IntrinsicType Type { get; }
  7. public IntrinsicInfo(uint inst, IntrinsicType type)
  8. {
  9. Inst = inst;
  10. Type = type;
  11. }
  12. }
  13. }