File tree 2 files changed +0
-2
lines changed
compiler/ir/backend.wasm/src/org/jetbrains/kotlin/backend/wasm/ir2wasm
wasm/wasm.ir/src/org/jetbrains/kotlin/wasm/ir
2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -357,7 +357,6 @@ class DeclarationGenerator(val context: WasmModuleCodegenContext) : IrElementVis
357
357
358
358
fun generateDefaultInitializerForType (type : WasmType , g : WasmExpressionBuilder ) = when (type) {
359
359
WasmI32 -> g.buildConstI32(0 )
360
- WasmI1 -> g.buildConstI32(0 )
361
360
WasmI64 -> g.buildConstI64(0 )
362
361
WasmF32 -> g.buildConstF32(0f )
363
362
WasmF64 -> g.buildConstF64(0.0 )
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ sealed class WasmType(
15
15
// TODO: Remove this type.
16
16
object WasmUnreachableType : WasmType(" unreachable" , -0x40 )
17
17
object WasmI32 : WasmType(" i32" , -0x1 )
18
- object WasmI1 : WasmType(" i32" , -0x1 )
19
18
object WasmI64 : WasmType(" i64" , -0x2 )
20
19
object WasmF32 : WasmType(" f32" , -0x3 )
21
20
object WasmF64 : WasmType(" f64" , -0x4 )
You can’t perform that action at this time.
0 commit comments