File tree 1 file changed +29
-28
lines changed
compiler/rustc_data_structures/src
1 file changed +29
-28
lines changed Original file line number Diff line number Diff line change @@ -46,61 +46,62 @@ extern crate cfg_if;
46
46
#[ macro_use]
47
47
extern crate rustc_macros;
48
48
49
+ pub use ena:: snapshot_vec;
50
+ pub use ena:: undo_log;
51
+ pub use ena:: unify;
49
52
pub use rustc_index:: static_assert_size;
50
53
51
- #[ inline( never) ]
52
- #[ cold]
53
- pub fn cold_path < F : FnOnce ( ) -> R , R > ( f : F ) -> R {
54
- f ( )
55
- }
56
-
54
+ #[ macro_use]
55
+ pub mod stable_hasher;
56
+ pub mod aligned;
57
57
pub mod base_n;
58
58
pub mod binary_search_util;
59
59
pub mod captures;
60
+ pub mod fingerprint;
60
61
pub mod flat_map_in_place;
61
62
pub mod flock;
63
+ pub mod frozen;
62
64
pub mod functor;
63
65
pub mod fx;
64
66
pub mod graph;
65
67
pub mod intern;
66
68
pub mod jobserver;
67
69
pub mod macros;
70
+ pub mod marker;
71
+ pub mod memmap;
68
72
pub mod obligation_forest;
73
+ pub mod owned_slice;
74
+ pub mod profiling;
75
+ pub mod sharded;
69
76
pub mod sip128;
70
77
pub mod small_c_str;
71
78
pub mod small_str;
72
79
pub mod snapshot_map;
73
- pub mod svh;
74
- pub use ena:: snapshot_vec;
75
- pub mod memmap;
76
80
pub mod sorted_map;
77
- #[ macro_use]
78
- pub mod stable_hasher;
79
- mod atomic_ref;
80
- pub mod fingerprint;
81
- pub mod marker;
82
- pub mod profiling;
83
- pub mod sharded;
81
+ pub mod sso;
84
82
pub mod stack;
83
+ pub mod steal;
84
+ pub mod svh;
85
85
pub mod sync;
86
+ pub mod tagged_ptr;
87
+ pub mod temp_dir;
86
88
pub mod tiny_list;
87
89
pub mod transitive_relation;
90
+ pub mod unhash;
91
+ pub mod unord;
88
92
pub mod vec_linked_list;
89
93
pub mod work_queue;
90
- pub use atomic_ref:: AtomicRef ;
91
- pub mod aligned;
92
- pub mod frozen;
94
+
95
+ mod atomic_ref;
93
96
mod hashes;
94
- pub mod owned_slice;
95
- pub mod sso;
96
- pub mod steal;
97
- pub mod tagged_ptr;
98
- pub mod temp_dir;
99
- pub mod unhash;
100
- pub mod unord;
101
97
102
- pub use ena:: undo_log;
103
- pub use ena:: unify;
98
+ pub use atomic_ref:: AtomicRef ;
99
+
100
+ #[ inline( never) ]
101
+ #[ cold]
102
+ pub fn cold_path < F : FnOnce ( ) -> R , R > ( f : F ) -> R {
103
+ f ( )
104
+ }
104
105
105
106
pub struct OnDrop < F : Fn ( ) > ( pub F ) ;
106
107
You can’t perform that action at this time.
0 commit comments