File tree 1 file changed +4
-4
lines changed
compiler/rustc_builtin_macros/src
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ mod llvm_enzyme {
208
208
}
209
209
Annotatable :: Stmt ( stmt) => match & stmt. kind {
210
210
ast:: StmtKind :: Item ( iitem) => ( iitem. vis . clone ( ) , iitem. ident . clone ( ) ) ,
211
- _ => unreachable ! ( "stmt kind checked previously" ) ,
211
+ _ => bug ! ( "stmt kind checked previously" ) ,
212
212
} ,
213
213
_ => {
214
214
dcx. emit_err ( errors:: AutoDiffInvalidApplication { span : item. span ( ) } ) ;
@@ -337,13 +337,13 @@ mod llvm_enzyme {
337
337
iitem. attrs . push ( inline_never. clone ( ) ) ;
338
338
}
339
339
}
340
- _ => unreachable ! ( "stmt kind checked previously" ) ,
340
+ _ => bug ! ( "stmt kind checked previously" ) ,
341
341
} ;
342
342
343
343
Annotatable :: Stmt ( stmt. clone ( ) )
344
344
}
345
345
_ => {
346
- unreachable ! ( "annotatable kind checked previously" )
346
+ bug ! ( "annotatable kind checked previously" )
347
347
}
348
348
} ;
349
349
// Now update for d_fn
@@ -387,7 +387,7 @@ mod llvm_enzyme {
387
387
} ) )
388
388
}
389
389
_ => {
390
- unreachable ! ( "item kind checked previously" )
390
+ bug ! ( "item kind checked previously" )
391
391
}
392
392
} ;
393
393
You can’t perform that action at this time.
0 commit comments