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