[K/N] Remove obsolete hack in ClangArgs

Fixes backend.native:tests for watchosArm64 target.
This commit is contained in:
Sergey Bogolepov
2022-04-15 18:12:49 +03:00
committed by Space
parent 0d38f293d5
commit 7401760d23
@@ -85,12 +85,6 @@ sealed class ClangArgs(
else -> configurables.osVersionMin
}
targetTriple.copy(
architecture = when (targetTriple.architecture) {
// TODO: LLVM 8 doesn't support arm64_32.
// We can use armv7k because they are compatible at bitcode level.
"arm64_32" -> "armv7k"
else -> targetTriple.architecture
},
os = "${targetTriple.os}$osVersionMin"
).toString()
}