authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-01-30 18:43:28-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-01-30 18:43:28-05:00
logc5df0b3e9d8b0a9186cde887a1893bd2be3dbbae
treeeb39d58822c88a7ebe049d23c469f1a691b84336
parent17c8f108a4d4c753e087e23ff5722718a6cd7a6a
signature Commit is signed but in an unrecognized format.

set llvm cpu features to null for exynosm1,exynosm2

llvm dropped support for these features

1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/target/aarch64.zig+2-2
...@@ -564,7 +564,7 @@ pub const all_features = blk: {...@@ -564,7 +564,7 @@ pub const all_features = blk: {
564 }),564 }),
565 };565 };
566 result[@enumToInt(Feature.exynosm1)] = .{566 result[@enumToInt(Feature.exynosm1)] = .{
567 .llvm_name = "exynosm1",567 .llvm_name = null,
568 .description = "Samsung Exynos-M1 processors",568 .description = "Samsung Exynos-M1 processors",
569 .dependencies = featureSet(&[_]Feature{569 .dependencies = featureSet(&[_]Feature{
570 .crc,570 .crc,
...@@ -581,7 +581,7 @@ pub const all_features = blk: {...@@ -581,7 +581,7 @@ pub const all_features = blk: {
581 }),581 }),
582 };582 };
583 result[@enumToInt(Feature.exynosm2)] = .{583 result[@enumToInt(Feature.exynosm2)] = .{
584 .llvm_name = "exynosm2",584 .llvm_name = null,
585 .description = "Samsung Exynos-M2 processors",585 .description = "Samsung Exynos-M2 processors",
586 .dependencies = featureSet(&[_]Feature{586 .dependencies = featureSet(&[_]Feature{
587 .crc,587 .crc,