Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
3e7176e
feat: move to shared infrastructure
indietyp Feb 28, 2026
d8a0ec0
feat: traversal path
indietyp Feb 28, 2026
2208fe7
feat: move analysis traversal pass (WIP)
indietyp Feb 28, 2026
e03fcf6
feat: checkpoint
indietyp Feb 28, 2026
18491b4
feat: checkpoint
indietyp Mar 1, 2026
db7c41f
feat: checkpoint
indietyp Mar 1, 2026
4d69417
feat: checkpoint
indietyp Mar 1, 2026
1566891
feat: rework tests
indietyp Mar 1, 2026
e2eb7b5
feat: define lattice over the entity
indietyp Mar 1, 2026
db39aa6
feat: checkpoint
indietyp Mar 1, 2026
3e2e118
feat: define lattice over the entity
indietyp Mar 1, 2026
d4960b4
feat: terminator placement
indietyp Mar 1, 2026
fb3a6f7
feat: terminator placement
indietyp Mar 1, 2026
c53de7e
chore: tests
indietyp Mar 1, 2026
4acdb2c
feat: re-enable unused lints
indietyp Mar 1, 2026
0bb42a6
feat: checkpoint
indietyp Mar 1, 2026
8121899
fix: remove the old traversals intermediary
indietyp Mar 1, 2026
7b3f458
fix: remove the old traversals intermediary
indietyp Mar 1, 2026
e7c0282
chore: remove old version
indietyp Mar 1, 2026
f1a00c0
feat: sketch out the cost vec
indietyp Mar 2, 2026
3502d44
feat: checkpoitn
indietyp Mar 2, 2026
8de1462
feat: checkpoint
indietyp Mar 2, 2026
d93c19a
feat: checkpoint
indietyp Mar 2, 2026
abbe3ab
feat: checkpoint
indietyp Mar 2, 2026
79e0f09
fix: doc cleanup
indietyp Mar 2, 2026
7dd5915
fix: suggestions from code review
indietyp Mar 2, 2026
2b68295
fix: suggestions from code review
indietyp Mar 2, 2026
7433fee
fix: ordering
indietyp Mar 3, 2026
5e31131
fix: library features
indietyp Mar 31, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub(crate) fn mir_pass_transform_post_inline<'heap>(
diagnostics: DiagnosticIssues::new(),
};

let mut pass = PostInline::new_in(heap, &mut scratch);
let mut pass = PostInline::new_in(&mut scratch);
let _: Changed = pass.run(
&mut context,
&mut GlobalTransformState::new_in(&bodies, heap),
Expand Down
Loading
Loading