blob: 956fc778da70e9eb54c179aa03757cdc80019a86 (
plain) (
tree)
|
|
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;
}
}
}
|