@@ -54,16 +54,16 @@ pub fn pretty_statement(statement: &StatementKind) -> String {
5454 pretty. push_str ( format ! ( " _{} = " , place. local) . as_str ( ) ) ;
5555 pretty. push_str ( format ! ( "{}" , & pretty_rvalue( rval) ) . as_str ( ) ) ;
5656 }
57- StatementKind :: FakeRead ( _, _) => todo ! ( ) ,
58- StatementKind :: SetDiscriminant { .. } => todo ! ( ) ,
59- StatementKind :: Deinit ( _) => todo ! ( ) ,
60- StatementKind :: StorageLive ( _) => todo ! ( ) ,
61- StatementKind :: StorageDead ( _) => todo ! ( ) ,
62- StatementKind :: Retag ( _, _) => todo ! ( ) ,
63- StatementKind :: PlaceMention ( _) => todo ! ( ) ,
64- StatementKind :: AscribeUserType { .. } => todo ! ( ) ,
65- StatementKind :: Coverage ( _) => todo ! ( ) ,
66- StatementKind :: Intrinsic ( _) => todo ! ( ) ,
57+ StatementKind :: FakeRead ( _, _) => ( ) ,
58+ StatementKind :: SetDiscriminant { .. } => ( ) ,
59+ StatementKind :: Deinit ( _) => ( ) ,
60+ StatementKind :: StorageLive ( _) => ( ) ,
61+ StatementKind :: StorageDead ( _) => ( ) ,
62+ StatementKind :: Retag ( _, _) => ( ) ,
63+ StatementKind :: PlaceMention ( _) => ( ) ,
64+ StatementKind :: AscribeUserType { .. } => ( ) ,
65+ StatementKind :: Coverage ( _) => ( ) ,
66+ StatementKind :: Intrinsic ( _) => ( ) ,
6767 StatementKind :: ConstEvalCounter => ( ) ,
6868 StatementKind :: Nop => ( ) ,
6969 }
@@ -149,7 +149,7 @@ pub fn pretty_rvalue(rval: &Rvalue) -> String {
149149 pretty. push_str ( " " ) ;
150150 pretty. push_str ( & pretty_ty ( cnst. ty ( ) . kind ( ) ) ) ;
151151 }
152- Rvalue :: ShallowInitBox ( _, _) => todo ! ( ) ,
152+ Rvalue :: ShallowInitBox ( _, _) => ( ) ,
153153 Rvalue :: ThreadLocalRef ( item) => {
154154 pretty. push_str ( "thread_local_ref" ) ;
155155 pretty. push_str ( format ! ( "{:#?}" , item) . as_str ( ) ) ;
0 commit comments