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
signaturelock-open 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: {
564564 }),
565565 };
566566 result[@enumToInt(Feature.exynosm1)] = .{
567 .llvm_name = "exynosm1",
567 .llvm_name = null,
568568 .description = "Samsung Exynos-M1 processors",
569569 .dependencies = featureSet(&[_]Feature{
570570 .crc,
......@@ -581,7 +581,7 @@ pub const all_features = blk: {
581581 }),
582582 };
583583 result[@enumToInt(Feature.exynosm2)] = .{
584 .llvm_name = "exynosm2",
584 .llvm_name = null,
585585 .description = "Samsung Exynos-M2 processors",
586586 .dependencies = featureSet(&[_]Feature{
587587 .crc,