Change order of line number geneartion for function call, and also force

line number generation after visiting inline functions.
This commit is contained in:
Jiaxiang Chen
2019-05-03 17:37:49 -07:00
committed by max-kammerer
parent eeb1c0a0fc
commit 0020e953e1
4 changed files with 4 additions and 5 deletions
-1
View File
@@ -84,4 +84,3 @@ fun String.fail(): String {
fun call(): String {
return "xxx"
}
// IGNORE_BACKEND: JVM_IR
-1
View File
@@ -64,4 +64,3 @@ infix fun String.fail(p: String): String {
fun call(): String {
return "xxx"
}
// IGNORE_BACKEND: JVM_IR
@@ -108,4 +108,3 @@ inline fun inlineFun(): String {
fun fail(): String {
throw AssertionError("fail")
}
// IGNORE_BACKEND: JVM_IR