@@ -58,16 +58,16 @@ pub fn pretty_statement(statement: &StatementKind) -> String {
5858 pretty. push_str ( format ! ( " _{} = " , place. local) . as_str ( ) ) ;
5959 pretty. push_str ( format ! ( "{}" , & pretty_rvalue( rval) ) . as_str ( ) ) ;
6060 }
61- StatementKind :: FakeRead ( _, _) => todo ! ( ) ,
62- StatementKind :: SetDiscriminant { .. } => todo ! ( ) ,
63- StatementKind :: Deinit ( _) => todo ! ( ) ,
64- StatementKind :: StorageLive ( _) => todo ! ( ) ,
65- StatementKind :: StorageDead ( _) => todo ! ( ) ,
66- StatementKind :: Retag ( _, _) => todo ! ( ) ,
67- StatementKind :: PlaceMention ( _) => todo ! ( ) ,
68- StatementKind :: AscribeUserType { .. } => todo ! ( ) ,
69- StatementKind :: Coverage ( _) => todo ! ( ) ,
70- StatementKind :: Intrinsic ( _) => todo ! ( ) ,
61+ StatementKind :: FakeRead ( _, _) => ( ) ,
62+ StatementKind :: SetDiscriminant { .. } => ( ) ,
63+ StatementKind :: Deinit ( _) => ( ) ,
64+ StatementKind :: StorageLive ( _) => ( ) ,
65+ StatementKind :: StorageDead ( _) => ( ) ,
66+ StatementKind :: Retag ( _, _) => ( ) ,
67+ StatementKind :: PlaceMention ( _) => ( ) ,
68+ StatementKind :: AscribeUserType { .. } => ( ) ,
69+ StatementKind :: Coverage ( _) => ( ) ,
70+ StatementKind :: Intrinsic ( _) => ( ) ,
7171 StatementKind :: ConstEvalCounter => ( ) ,
7272 StatementKind :: Nop => ( ) ,
7373 }
@@ -356,7 +356,7 @@ pub fn pretty_rvalue(rval: &Rvalue) -> String {
356356 pretty. push_str ( " " ) ;
357357 pretty. push_str ( & pretty_ty ( cnst. ty ( ) . kind ( ) ) ) ;
358358 }
359- Rvalue :: ShallowInitBox ( _, _) => todo ! ( ) ,
359+ Rvalue :: ShallowInitBox ( _, _) => ( ) ,
360360 Rvalue :: ThreadLocalRef ( item) => {
361361 pretty. push_str ( "thread_local_ref" ) ;
362362 pretty. push_str ( format ! ( "{:#?}" , item) . as_str ( ) ) ;
0 commit comments