1
0
forked from MeloNX/MeloNX
MeloNX/src/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs
2023-04-27 23:51:14 +02:00

14 lines
312 B
C#

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