diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-01-30 18:43:28 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-01-30 18:43:28 -0500 |
| commit | c5df0b3e9d8b0a9186cde887a1893bd2be3dbbae (patch) | |
| tree | eb39d58822c88a7ebe049d23c469f1a691b84336 /lib/std | |
| parent | 17c8f108a4d4c753e087e23ff5722718a6cd7a6a (diff) | |
| download | zig-c5df0b3e9d8b0a9186cde887a1893bd2be3dbbae.tar.gz zig-c5df0b3e9d8b0a9186cde887a1893bd2be3dbbae.zip | |
set llvm cpu features to null for exynosm1,exynosm2
llvm dropped support for these features
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/target/aarch64.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/target/aarch64.zig b/lib/std/target/aarch64.zig index 5524c8fe22..a039206489 100644 --- a/lib/std/target/aarch64.zig +++ b/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, |
