fix serialization of IR nop

This commit is contained in:
Alex Zenla
2025-07-24 22:33:54 -07:00
parent 69230deefc
commit e86b800a7d

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) {}
}