Move solution and projects to src
This commit is contained in:
14
src/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs
Normal file
14
src/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user