No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }