fix serialization of IR nop

This commit is contained in:
Alex Zenla 2025-07-24 22:33:54 -07:00
parent 69230deefc
commit e86b800a7d
No known key found for this signature in database
GPG Key ID: 067B238899B51269

View File

@ -1,5 +1,8 @@
package gay.pizza.pork.bir
import kotlinx.serialization.Serializable
@Serializable
object IrNop : IrCodeElement() {
override fun crawl(block: (IrElement) -> Unit) {}
}