Deprecate Architecture.bitness property

There is no such thing as "bitness" of CPU achitecture.
Something more appropriate and correct (e.g. ABI) should be
introduced instead.
This commit is contained in:
Sergey Bogolepov
2021-05-24 12:32:18 +07:00
committed by teamcityserver
parent bed42e9ab2
commit b541721a79
@@ -5,7 +5,7 @@
package org.jetbrains.kotlin.konan.target
enum class Architecture(val bitness: Int) {
enum class Architecture(@Deprecated("Compare Architecture entries instead.") val bitness: Int) {
X64(64),
X86(32),
ARM64(64),