WASM: Don't special case string equality, it now goes through normal .equals method

This commit is contained in:
Igor Laevsky
2021-07-23 17:40:14 +03:00
committed by TeamCityServer
parent d90e3618f9
commit fc0ae851a2
2 changed files with 1 additions and 4 deletions
@@ -79,8 +79,7 @@ class WasmSymbols(
context.irBuiltIns.shortType to getInternalFunction("wasm_i32_eq"),
context.irBuiltIns.charType to getInternalFunction("wasm_i32_eq"),
context.irBuiltIns.intType to getInternalFunction("wasm_i32_eq"),
context.irBuiltIns.longType to getInternalFunction("wasm_i64_eq"),
context.irBuiltIns.stringType to getFunction("wasm_string_eq", builtInsPackage)
context.irBuiltIns.longType to getInternalFunction("wasm_i64_eq")
)
val floatEqualityFunctions = mapOf(