[K/N] Fixed case with parameter which can be optimized with BCE

This commit is contained in:
Elena Lepilkina
2021-07-09 12:14:58 +03:00
committed by Space
parent 2477ea80c6
commit 025e572462
2 changed files with 14 additions and 8 deletions
@@ -465,4 +465,8 @@ fun foo(a: Int, b : Int): Int = a + b * 2
for (i in 0..size1) {
foo(array[i], array[i])
}
for (i in 0..array.size - 2) {
array[i+1] = array[i]
}
}