We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e74fe7a commit 41a2260Copy full SHA for 41a2260
compiler/rustc_target/src/callconv/mod.rs
@@ -919,7 +919,7 @@ fn conv_to_externabi(conv: &Conv) -> ExternAbi {
919
Conv::AvrNonBlockingInterrupt => ExternAbi::AvrNonBlockingInterrupt,
920
Conv::RiscvInterrupt { kind: RiscvInterruptKind::Machine } => ExternAbi::RiscvInterruptM,
921
Conv::RiscvInterrupt { kind: RiscvInterruptKind::Supervisor } => ExternAbi::RiscvInterruptS,
922
- Conv::Cold | Conv::PreserveAll => panic!("This is deadcode"),
+ Conv::Cold | Conv::PreserveAll => unreachable!(),
923
}
924
925
0 commit comments