Fix bytecode tests after new optimizations

- Turn some const conditions into non-const conditions
- Make sure inlined const values are used where required
(otherwise they are eliminated by POP backward propagation)
This commit is contained in:
Dmitry Petrov
2017-05-12 17:27:32 +03:00
parent 2051355d6a
commit 1378b0cf05
22 changed files with 84 additions and 60 deletions
@@ -4,8 +4,8 @@
fun test1() {
val n = null
n.elvis { "X1" }
"X2".elvis { "X3" }
val u1 = n.elvis { "X1" }
val u2 = "X2".elvis { "X3" }
}
// @TestKt.class: