ISLE: Add a nodebug type attribute to disable derive(Debug)

I need this to move the x64 `Inst` definition into ISLE without losing its
custom `Debug` implementation that prints the assembly for the `Inst`.
This commit is contained in:
Nick Fitzgerald
2022-01-25 14:38:23 -08:00
parent 605c79fd05
commit e1f4e29efe
5 changed files with 63 additions and 19 deletions

View File

@@ -0,0 +1,4 @@
(type DoesNotDeriveDebug nodebug
(enum A
B
C))