File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11use crate :: errors;
22use rustc_ast:: ast;
33use rustc_attr:: InstructionSetAttr ;
4- use rustc_data_structures:: fx:: FxHashMap ;
54use rustc_data_structures:: fx:: FxIndexSet ;
5+ use rustc_data_structures:: unord:: UnordMap ;
66use rustc_errors:: Applicability ;
77use rustc_hir:: def:: DefKind ;
88use rustc_hir:: def_id:: DefId ;
@@ -18,7 +18,7 @@ use rustc_span::Span;
1818pub fn from_target_feature (
1919 tcx : TyCtxt < ' _ > ,
2020 attr : & ast:: Attribute ,
21- supported_target_features : & FxHashMap < String , Option < Symbol > > ,
21+ supported_target_features : & UnordMap < String , Option < Symbol > > ,
2222 target_features : & mut Vec < Symbol > ,
2323) {
2424 let Some ( list) = attr. meta_item_list ( ) else { return } ;
Original file line number Diff line number Diff line change @@ -2082,7 +2082,7 @@ rustc_queries! {
20822082 desc { "computing autoderef types for `{}`" , goal. value. value }
20832083 }
20842084
2085- query supported_target_features( _: CrateNum ) -> & ' tcx FxHashMap <String , Option <Symbol >> {
2085+ query supported_target_features( _: CrateNum ) -> & ' tcx UnordMap <String , Option <Symbol >> {
20862086 arena_cache
20872087 eval_always
20882088 desc { "looking up supported target features" }
You can’t perform that action at this time.
0 commit comments