@@ -7,7 +7,7 @@ use std::ops::Deref;
7
7
use std:: { fmt, str} ;
8
8
9
9
use rustc_arena:: DroplessArena ;
10
- use rustc_data_structures:: fx:: FxIndexSet ;
10
+ use rustc_data_structures:: fx:: { FxHashSet , FxIndexSet } ;
11
11
use rustc_data_structures:: stable_hasher:: {
12
12
HashStable , StableCompare , StableHasher , ToStableHashKey ,
13
13
} ;
@@ -2871,11 +2871,20 @@ impl Interner {
2871
2871
let byte_strs = FxIndexSet :: from_iter (
2872
2872
init. iter ( ) . copied ( ) . chain ( extra. iter ( ) . copied ( ) ) . map ( |str| str. as_bytes ( ) ) ,
2873
2873
) ;
2874
- assert_eq ! (
2875
- byte_strs. len( ) ,
2876
- init. len( ) + extra. len( ) ,
2877
- "duplicate symbols in the rustc symbol list and the extra symbols added by the driver" ,
2878
- ) ;
2874
+
2875
+ // The order in which duplicates are reported is irrelevant.
2876
+ #[ expect( rustc:: potential_query_instability) ]
2877
+ if byte_strs. len ( ) != init. len ( ) + extra. len ( ) {
2878
+ panic ! (
2879
+ "duplicate symbols in the rustc symbol list and the extra symbols added by the driver: {:?}" ,
2880
+ FxHashSet :: intersection(
2881
+ & init. iter( ) . copied( ) . collect( ) ,
2882
+ & extra. iter( ) . copied( ) . collect( ) ,
2883
+ )
2884
+ . collect:: <Vec <_>>( )
2885
+ )
2886
+ }
2887
+
2879
2888
Interner ( Lock :: new ( InternerInner { arena : Default :: default ( ) , byte_strs } ) )
2880
2889
}
2881
2890
0 commit comments