mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
Auto merge of #119377 - tmiasko:after, r=cjgillot
Don't validate / lint MIR before each pass To avoid redundant work and verbose output in case of failures.
This commit is contained in:
commit
c2354aabea
@ -129,12 +129,6 @@ fn run_passes_inner<'tcx>(
|
||||
if dump_enabled {
|
||||
dump_mir_for_pass(tcx, body, name, false);
|
||||
}
|
||||
if validate {
|
||||
validate_body(tcx, body, format!("before pass {name}"));
|
||||
}
|
||||
if lint {
|
||||
lint_body(tcx, body, format!("before pass {name}"));
|
||||
}
|
||||
|
||||
if let Some(prof_arg) = &prof_arg {
|
||||
tcx.sess
|
||||
|
@ -1,4 +1,4 @@
|
||||
error: internal compiler error: broken MIR in Item(DefId(0:8 ~ storage_live[HASH]::multiple_storage)) (before pass CheckPackedRef) at bb0[1]:
|
||||
error: internal compiler error: broken MIR in Item(DefId(0:8 ~ storage_live[HASH]::multiple_storage)) (after pass CheckPackedRef) at bb0[1]:
|
||||
StorageLive(_1) which already has storage here
|
||||
--> $DIR/storage-live.rs:22:13
|
||||
|
|
||||
|
Loading…
Reference in New Issue
Block a user