Skip to content

Commit f2de221

Browse files
committed
Auto merge of #81101 - tmiasko:combine-now, r=nagisa
Combine instructions immediately
2 parents bbc01bb + 508eec4 commit f2de221

File tree

4 files changed

+79
-355
lines changed

4 files changed

+79
-355
lines changed

compiler/rustc_middle/src/mir/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ mod type_foldable;
5454
pub mod visit;
5555

5656
/// Types for locals
57-
type LocalDecls<'tcx> = IndexVec<Local, LocalDecl<'tcx>>;
57+
pub type LocalDecls<'tcx> = IndexVec<Local, LocalDecl<'tcx>>;
5858

5959
pub trait HasLocalDecls<'tcx> {
6060
fn local_decls(&self) -> &LocalDecls<'tcx>;

0 commit comments

Comments
 (0)