[Wasm IR] Add data heap type

This commit is contained in:
Svyatoslav Kuzmich
2021-09-08 13:02:23 +03:00
parent c0d48e3417
commit a384ba6442
@@ -51,6 +51,8 @@ sealed class WasmHeapType {
@Suppress("unused")
object ExnH : Simple("exn", -0x18)
object Data : Simple("data", -0x19)
override fun toString(): String {
return "Simple:$name(${code.toString(16)})"
}