From 0945968751b17509daf1f32069d7b45af477d493 Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Mon, 17 Jul 2023 20:46:53 +0200 Subject: [PATCH] [Wasm] Update expected size in test data --- compiler/testData/codegen/box/size/helloWorld.kt | 2 +- compiler/testData/codegen/box/size/removeUnusedOverride.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"