From 0b98a0c72769c2549827ec2320beb5478ca3c335 Mon Sep 17 00:00:00 2001 From: Caleb Zulawski Date: Mon, 5 Aug 2024 10:31:03 -0400 Subject: [PATCH] Fix typo Co-authored-by: Amanieu d'Antras --- compiler/rustc_target/src/target_features.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_target/src/target_features.rs b/compiler/rustc_target/src/target_features.rs index 746926308b6b4..da66ba270b33c 100644 --- a/compiler/rustc_target/src/target_features.rs +++ b/compiler/rustc_target/src/target_features.rs @@ -335,7 +335,7 @@ const RISCV_ALLOWED_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[ ("zkne", Stable, &[]), ("zknh", Stable, &[]), ("zkr", Stable, &[]), - ("zks", Stable, &["zbkb", "bzkc", "zbkx", "zksed", "zksh"]), + ("zks", Stable, &["zbkb", "zbkc", "zbkx", "zksed", "zksh"]), ("zksed", Stable, &[]), ("zksh", Stable, &[]), ("zkt", Stable, &[]),