review fixes + DCE data update + test (un)muting

This commit is contained in:
Anton Bannykh
2018-08-17 15:58:13 +03:00
committed by Ilya Gorbunov
parent 2663d9751a
commit a83baee67b
52 changed files with 264 additions and 200 deletions
@@ -1,5 +1,5 @@
// IGNORE_BACKEND: JS_IR
// EXPECTED_REACHABLE_NODES: 1114
// EXPECTED_REACHABLE_NODES: 1230
package foo
fun fact(n: Int): Long = if (n == 1) 1L else n * fact(n - 1)