| ... | ... | @@ -326,7 +326,7 @@ pub const all_features = blk: { |
| 326 | 326 | }; |
| 327 | 327 | result[@enumToInt(Feature.avx512ifma)] = .{ |
| 328 | 328 | .llvm_name = "avx512ifma", |
| 329 | | .description = "Enable AVX-512 Integer Fused Multiple-Add", |
| 329 | .description = "Enable AVX-512 Integer Fused Multiply-Add", |
| 330 | 330 | .dependencies = featureSet(&[_]Feature{ |
| 331 | 331 | .avx512f, |
| 332 | 332 | }), |
| ... | ... | @@ -599,14 +599,14 @@ pub const all_features = blk: { |
| 599 | 599 | }; |
| 600 | 600 | result[@enumToInt(Feature.fma)] = .{ |
| 601 | 601 | .llvm_name = "fma", |
| 602 | | .description = "Enable three-operand fused multiple-add", |
| 602 | .description = "Enable three-operand fused multiply-add", |
| 603 | 603 | .dependencies = featureSet(&[_]Feature{ |
| 604 | 604 | .avx, |
| 605 | 605 | }), |
| 606 | 606 | }; |
| 607 | 607 | result[@enumToInt(Feature.fma4)] = .{ |
| 608 | 608 | .llvm_name = "fma4", |
| 609 | | .description = "Enable four-operand fused multiple-add", |
| 609 | .description = "Enable four-operand fused multiply-add", |
| 610 | 610 | .dependencies = featureSet(&[_]Feature{ |
| 611 | 611 | .avx, |
| 612 | 612 | .sse4a, |