Rollup merge of #99155 - Amanieu:unstable-target-features, r=davidtwco
Keep unstable target features for asm feature checking Inline assembly uses the target features to determine which registers are available on the current target. However it needs to be able to access unstable target features for this. Fixes #99071
This commit is contained in:
commit
68cfdbb5c1
10 changed files with 67 additions and 28 deletions
|
@ -48,7 +48,10 @@ pub fn add_configuration(
|
|||
) {
|
||||
let tf = sym::target_feature;
|
||||
|
||||
let target_features = codegen_backend.target_features(sess);
|
||||
let unstable_target_features = codegen_backend.target_features(sess, true);
|
||||
sess.unstable_target_features.extend(unstable_target_features.iter().cloned());
|
||||
|
||||
let target_features = codegen_backend.target_features(sess, false);
|
||||
sess.target_features.extend(target_features.iter().cloned());
|
||||
|
||||
cfg.extend(target_features.into_iter().map(|feat| (tf, Some(feat))));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue