File tree 2 files changed +1
-6
lines changed
2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 1
- #![ allow( unused) ]
2
-
3
1
use std:: cmp:: Ordering ;
4
2
use std:: ops;
5
3
@@ -209,7 +207,6 @@ where
209
207
}
210
208
211
209
/// Updates the cursor to hold the dataflow state immediately before `target`.
212
- #[ allow( unused) ]
213
210
pub fn seek_before ( & mut self , target : Location ) {
214
211
assert ! ( target <= self . body. terminator_loc( target. block) ) ;
215
212
@@ -228,7 +225,6 @@ where
228
225
/// If `target` is a `Call` terminator, `apply_call_return_effect` will not be called. See
229
226
/// `seek_after_assume_call_returns` if you wish to observe the dataflow state upon a
230
227
/// successful return.
231
- #[ allow( unused) ]
232
228
pub fn seek_after ( & mut self , target : Location ) {
233
229
assert ! ( target <= self . body. terminator_loc( target. block) ) ;
234
230
@@ -243,7 +239,6 @@ where
243
239
244
240
/// Equivalent to `seek_after`, but also calls `apply_call_return_effect` if `target` is a
245
241
/// `Call` terminator whose callee is convergent.
246
- #[ allow( unused) ]
247
242
pub fn seek_after_assume_call_returns ( & mut self , target : Location ) {
248
243
assert ! ( target <= self . body. terminator_loc( target. block) ) ;
249
244
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ pub mod error_codes;
36
36
37
37
mod borrow_check;
38
38
mod build;
39
- mod dataflow;
39
+ pub mod dataflow;
40
40
mod hair;
41
41
mod lints;
42
42
mod shim;
You can’t perform that action at this time.
0 commit comments