IntrinsicInfo.cs 312 B

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