File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 1- #![ allow( unused) ]
2-
31use std:: cmp:: Ordering ;
42use std:: ops;
53
@@ -209,7 +207,6 @@ where
209207 }
210208
211209 /// Updates the cursor to hold the dataflow state immediately before `target`.
212- #[ allow( unused) ]
213210 pub fn seek_before ( & mut self , target : Location ) {
214211 assert ! ( target <= self . body. terminator_loc( target. block) ) ;
215212
@@ -228,7 +225,6 @@ where
228225 /// If `target` is a `Call` terminator, `apply_call_return_effect` will not be called. See
229226 /// `seek_after_assume_call_returns` if you wish to observe the dataflow state upon a
230227 /// successful return.
231- #[ allow( unused) ]
232228 pub fn seek_after ( & mut self , target : Location ) {
233229 assert ! ( target <= self . body. terminator_loc( target. block) ) ;
234230
@@ -243,7 +239,6 @@ where
243239
244240 /// Equivalent to `seek_after`, but also calls `apply_call_return_effect` if `target` is a
245241 /// `Call` terminator whose callee is convergent.
246- #[ allow( unused) ]
247242 pub fn seek_after_assume_call_returns ( & mut self , target : Location ) {
248243 assert ! ( target <= self . body. terminator_loc( target. block) ) ;
249244
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ pub mod error_codes;
3636
3737mod borrow_check;
3838mod build;
39- mod dataflow;
39+ pub mod dataflow;
4040mod hair;
4141mod lints;
4242mod shim;
You can’t perform that action at this time.
0 commit comments