Skip to content

Commit ef968f2

Browse files
committed
refactor: use bug! instead of unreachable!
1 parent a02aaec commit ef968f2

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -3366,6 +3366,7 @@ dependencies = [
33663366
"rustc_lexer",
33673367
"rustc_lint_defs",
33683368
"rustc_macros",
3369+
"rustc_middle",
33693370
"rustc_parse",
33703371
"rustc_parse_format",
33713372
"rustc_session",

compiler/rustc_builtin_macros/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ rustc_index = { path = "../rustc_index" }
2121
rustc_lexer = { path = "../rustc_lexer" }
2222
rustc_lint_defs = { path = "../rustc_lint_defs" }
2323
rustc_macros = { path = "../rustc_macros" }
24+
rustc_middle = { path = "../rustc_middle" }
2425
rustc_parse = { path = "../rustc_parse" }
2526
rustc_parse_format = { path = "../rustc_parse_format" }
2627
rustc_session = { path = "../rustc_session" }

compiler/rustc_builtin_macros/src/autodiff.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ mod llvm_enzyme {
2020
PatKind, TyKind,
2121
};
2222
use rustc_expand::base::{Annotatable, ExtCtxt};
23+
use rustc_middle::bug;
2324
use rustc_span::{Ident, Span, Symbol, kw, sym};
2425
use thin_vec::{ThinVec, thin_vec};
2526
use tracing::{debug, trace};
@@ -208,7 +209,7 @@ mod llvm_enzyme {
208209
}
209210
Annotatable::Stmt(stmt) => match &stmt.kind {
210211
ast::StmtKind::Item(iitem) => (iitem.vis.clone(), iitem.ident.clone()),
211-
_ => unreachable!("stmt kind checked previously"),
212+
_ => bug!("stmt kind checked previously"),
212213
},
213214
_ => {
214215
dcx.emit_err(errors::AutoDiffInvalidApplication { span: item.span() });
@@ -337,13 +338,13 @@ mod llvm_enzyme {
337338
iitem.attrs.push(inline_never.clone());
338339
}
339340
}
340-
_ => unreachable!("stmt kind checked previously"),
341+
_ => bug!("stmt kind checked previously"),
341342
};
342343

343344
Annotatable::Stmt(stmt.clone())
344345
}
345346
_ => {
346-
unreachable!("annotatable kind checked previously")
347+
bug!("annotatable kind checked previously")
347348
}
348349
};
349350
// Now update for d_fn
@@ -387,7 +388,7 @@ mod llvm_enzyme {
387388
}))
388389
}
389390
_ => {
390-
unreachable!("item kind checked previously")
391+
bug!("item kind checked previously")
391392
}
392393
};
393394

0 commit comments

Comments
 (0)