Reduce size of object header by one pointer. (#2432)

This commit is contained in:
Nikolay Igotti
2018-12-03 13:50:56 +03:00
committed by GitHub
parent c6ac807034
commit 9e3a68f835
9 changed files with 162 additions and 121 deletions
@@ -6,7 +6,7 @@ fun String.parseKonanAbiVersion(): KonanAbiVersion {
data class KonanAbiVersion(val version: Int) {
companion object {
val CURRENT = KonanAbiVersion(4)
val CURRENT = KonanAbiVersion(5)
}
override fun toString() = "$version"
}