We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
target_feature
1 parent 1158ade commit beb4e16Copy full SHA for beb4e16
compiler/rustc_session/src/config.rs
@@ -1038,6 +1038,7 @@ impl CrateCheckConfig {
1038
sym::target_has_atomic_load_store,
1039
sym::target_has_atomic,
1040
sym::target_has_atomic_equal_alignment,
1041
+ sym::target_feature,
1042
sym::panic,
1043
sym::sanitize,
1044
sym::debug_assertions,
@@ -1081,6 +1082,10 @@ impl CrateCheckConfig {
1081
1082
.into_iter()
1083
.map(|sanitizer| Symbol::intern(sanitizer.as_str().unwrap()));
1084
1085
+ // Unknown possible values:
1086
+ // - `feature`
1087
+ // - `target_feature`
1088
+
1089
// No-values
1090
for name in [
1091
sym::doc,
0 commit comments