diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-05-06 16:24:41 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-05-08 07:36:20 -0400 |
| commit | 0bd92da0e20058942497d3f2d572799f9710959c (patch) | |
| tree | 6bafeea01bda99a0b3a442ddd460674fe5ed2878 /lib | |
| parent | 4b75352c78731f76cfeac0b5c78c03f232022096 (diff) | |
| download | zig-0bd92da0e20058942497d3f2d572799f9710959c.tar.gz zig-0bd92da0e20058942497d3f2d572799f9710959c.zip | |
target: fix typos in x86 feature descriptions
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/std/target/x86.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/std/target/x86.zig b/lib/std/target/x86.zig index c46367e755..bf3b8cb953 100644 --- a/lib/std/target/x86.zig +++ b/lib/std/target/x86.zig @@ -326,7 +326,7 @@ pub const all_features = blk: { }; result[@enumToInt(Feature.avx512ifma)] = .{ .llvm_name = "avx512ifma", - .description = "Enable AVX-512 Integer Fused Multiple-Add", + .description = "Enable AVX-512 Integer Fused Multiply-Add", .dependencies = featureSet(&[_]Feature{ .avx512f, }), @@ -599,14 +599,14 @@ pub const all_features = blk: { }; result[@enumToInt(Feature.fma)] = .{ .llvm_name = "fma", - .description = "Enable three-operand fused multiple-add", + .description = "Enable three-operand fused multiply-add", .dependencies = featureSet(&[_]Feature{ .avx, }), }; result[@enumToInt(Feature.fma4)] = .{ .llvm_name = "fma4", - .description = "Enable four-operand fused multiple-add", + .description = "Enable four-operand fused multiply-add", .dependencies = featureSet(&[_]Feature{ .avx, .sse4a, |
