We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 809cd20 commit ffa2d3aCopy full SHA for ffa2d3a
src/base.rs
@@ -250,17 +250,6 @@ pub(crate) fn verify_func(
250
}
251
252
fn codegen_fn_body(fx: &mut FunctionCx<'_, '_, '_>, start_block: Block) {
253
- if let Err(err) =
254
- fx.mir.post_mono_checks(fx.tcx, ty::ParamEnv::reveal_all(), |c| Ok(fx.monomorphize(c)))
255
- {
256
- err.emit_err(fx.tcx);
257
- fx.bcx.append_block_params_for_function_params(fx.block_map[START_BLOCK]);
258
- fx.bcx.switch_to_block(fx.block_map[START_BLOCK]);
259
- // compilation should have been aborted
260
- fx.bcx.ins().trap(TrapCode::UnreachableCodeReached);
261
- return;
262
- }
263
-
264
let arg_uninhabited = fx
265
.mir
266
.args_iter()
0 commit comments