Update expected reachable node count in JS tests

Caused by introduction of new random API
This commit is contained in:
Ilya Gorbunov
2018-07-16 19:53:42 +03:00
parent c369e67e9f
commit 516ea04d18
14 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
// IGNORE_BACKEND: JS_IR
// EXPECTED_REACHABLE_NODES: 1528
// EXPECTED_REACHABLE_NODES: 1523
fun imul32(a: Int, b: Int): Int = js("Kotlin").imulEmulated(a, b)
fun imul64(a: Int, b: Int): Int = (a.toLong() * b.toLong()).toInt()