improve KotlinJavaRuntime library ref

This commit is contained in:
Irmen de Jong
2023-12-06 22:17:08 +01:00
parent cce08d95db
commit 5a776dd690
5 changed files with 168 additions and 149 deletions
@@ -408,6 +408,9 @@ class IRPeepholeOptimizer(private val irprog: IRProgram) {
}
private fun removeDoubleLoadsAndStores(chunk: IRCodeChunk, indexedInstructions: List<IndexedValue<IRInstruction>>): Boolean {
return false
/*
var changed = false
indexedInstructions.forEach { (idx, ins) ->
@@ -421,5 +424,6 @@ class IRPeepholeOptimizer(private val irprog: IRProgram) {
// ...
}
return changed
*/
}
}