暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

BurstDisassembler.Core.LLVMIR.info.cs 555B

12345678910111213141516171819202122
  1. namespace Unity.Burst.Editor
  2. {
  3. internal partial class BurstDisassembler
  4. {
  5. internal class LLVMIRInstructionInfo
  6. {
  7. internal static bool GetLLVMIRInfo(string instructionName, out string instructionInfo)
  8. {
  9. var returnValue = true;
  10. switch (instructionName)
  11. {
  12. default:
  13. instructionInfo = string.Empty;
  14. break;
  15. }
  16. return returnValue;
  17. }
  18. }
  19. }
  20. }