forked from BilalY/Rasagar
22 lines
555 B
C#
22 lines
555 B
C#
namespace Unity.Burst.Editor
|
|
{
|
|
internal partial class BurstDisassembler
|
|
{
|
|
internal class LLVMIRInstructionInfo
|
|
{
|
|
internal static bool GetLLVMIRInfo(string instructionName, out string instructionInfo)
|
|
{
|
|
var returnValue = true;
|
|
|
|
switch (instructionName)
|
|
{
|
|
default:
|
|
instructionInfo = string.Empty;
|
|
break;
|
|
}
|
|
|
|
return returnValue;
|
|
}
|
|
}
|
|
}
|
|
} |