Commit c5df0b3e9d

Andrew Kelley <andrew@ziglang.org>
2020-01-31 00:43:28
set llvm cpu features to null for exynosm1,exynosm2
llvm dropped support for these features
1 parent 17c8f10
Changed files (1)
lib
std
lib/std/target/aarch64.zig
@@ -564,7 +564,7 @@ pub const all_features = blk: {
         }),
     };
     result[@enumToInt(Feature.exynosm1)] = .{
-        .llvm_name = "exynosm1",
+        .llvm_name = null,
         .description = "Samsung Exynos-M1 processors",
         .dependencies = featureSet(&[_]Feature{
             .crc,
@@ -581,7 +581,7 @@ pub const all_features = blk: {
         }),
     };
     result[@enumToInt(Feature.exynosm2)] = .{
-        .llvm_name = "exynosm2",
+        .llvm_name = null,
         .description = "Samsung Exynos-M2 processors",
         .dependencies = featureSet(&[_]Feature{
             .crc,