diff --git a/compiler/testData/codegen/box/size/helloWorld.kt b/compiler/testData/codegen/box/size/helloWorld.kt index 93699f3ec02..11424830689 100644 --- a/compiler/testData/codegen/box/size/helloWorld.kt +++ b/compiler/testData/codegen/box/size/helloWorld.kt @@ -1,6 +1,6 @@ // TARGET_BACKEND: WASM -// WASM_DCE_EXPECTED_OUTPUT_SIZE: wasm 47_948 +// WASM_DCE_EXPECTED_OUTPUT_SIZE: wasm 48_430 // WASM_DCE_EXPECTED_OUTPUT_SIZE: mjs 5_482 fun box(): String { diff --git a/compiler/testData/codegen/box/size/removeUnusedOverride.kt b/compiler/testData/codegen/box/size/removeUnusedOverride.kt index d24270b02cd..dbb7130b949 100644 --- a/compiler/testData/codegen/box/size/removeUnusedOverride.kt +++ b/compiler/testData/codegen/box/size/removeUnusedOverride.kt @@ -1,7 +1,7 @@ // TARGET_BACKEND: JS_IR // TARGET_BACKEND: WASM -// WASM_DCE_EXPECTED_OUTPUT_SIZE: wasm 13_492 +// WASM_DCE_EXPECTED_OUTPUT_SIZE: wasm 13_506 interface I { fun foo() = "OK"