File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
use crate :: errors;
2
2
use rustc_ast:: ast;
3
3
use rustc_attr:: InstructionSetAttr ;
4
- use rustc_data_structures:: fx:: FxHashMap ;
5
4
use rustc_data_structures:: fx:: FxIndexSet ;
5
+ use rustc_data_structures:: unord:: UnordMap ;
6
6
use rustc_errors:: Applicability ;
7
7
use rustc_hir:: def:: DefKind ;
8
8
use rustc_hir:: def_id:: DefId ;
@@ -18,7 +18,7 @@ use rustc_span::Span;
18
18
pub fn from_target_feature (
19
19
tcx : TyCtxt < ' _ > ,
20
20
attr : & ast:: Attribute ,
21
- supported_target_features : & FxHashMap < String , Option < Symbol > > ,
21
+ supported_target_features : & UnordMap < String , Option < Symbol > > ,
22
22
target_features : & mut Vec < Symbol > ,
23
23
) {
24
24
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! {
2082
2082
desc { "computing autoderef types for `{}`" , goal. value. value }
2083
2083
}
2084
2084
2085
- query supported_target_features( _: CrateNum ) -> & ' tcx FxHashMap <String , Option <Symbol >> {
2085
+ query supported_target_features( _: CrateNum ) -> & ' tcx UnordMap <String , Option <Symbol >> {
2086
2086
arena_cache
2087
2087
eval_always
2088
2088
desc { "looking up supported target features" }
You can’t perform that action at this time.
0 commit comments