Skip to content

Commit 38967f2

Browse files
committedDec 30, 2020
[Wasm] Remove unused WasmI1 type
1 parent 22239e2 commit 38967f2

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed
 

‎compiler/ir/backend.wasm/src/org/jetbrains/kotlin/backend/wasm/ir2wasm/DeclarationGenerator.kt

-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,6 @@ class DeclarationGenerator(val context: WasmModuleCodegenContext) : IrElementVis
357357

358358
fun generateDefaultInitializerForType(type: WasmType, g: WasmExpressionBuilder) = when (type) {
359359
WasmI32 -> g.buildConstI32(0)
360-
WasmI1 -> g.buildConstI32(0)
361360
WasmI64 -> g.buildConstI64(0)
362361
WasmF32 -> g.buildConstF32(0f)
363362
WasmF64 -> g.buildConstF64(0.0)

‎wasm/wasm.ir/src/org/jetbrains/kotlin/wasm/ir/Types.kt

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ sealed class WasmType(
1515
// TODO: Remove this type.
1616
object WasmUnreachableType : WasmType("unreachable", -0x40)
1717
object WasmI32 : WasmType("i32", -0x1)
18-
object WasmI1 : WasmType("i32", -0x1)
1918
object WasmI64 : WasmType("i64", -0x2)
2019
object WasmF32 : WasmType("f32", -0x3)
2120
object WasmF64 : WasmType("f64", -0x4)

0 commit comments

Comments
 (0)
Please sign in to comment.