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
687fc68
feat: move to shared infrastructure
indietyp Feb 28, 2026
0ceb418
feat: traversal path
indietyp Feb 28, 2026
fed39c9
feat: move analysis traversal pass (WIP)
indietyp Feb 28, 2026
d9b255d
feat: checkpoint
indietyp Feb 28, 2026
5f367a6
feat: checkpoint
indietyp Mar 1, 2026
2f8c8df
feat: checkpoint
indietyp Mar 1, 2026
3097e8e
feat: checkpoint
indietyp Mar 1, 2026
f4edfb4
feat: rework tests
indietyp Mar 1, 2026
64bb112
feat: define lattice over the entity
indietyp Mar 1, 2026
469bc6d
feat: checkpoint
indietyp Mar 1, 2026
dcd6834
feat: define lattice over the entity
indietyp Mar 1, 2026
2d46b4e
feat: terminator placement
indietyp Mar 1, 2026
418287f
feat: terminator placement
indietyp Mar 1, 2026
68127a3
chore: tests
indietyp Mar 1, 2026
5dd48d7
feat: re-enable unused lints
indietyp Mar 1, 2026
8cd5758
feat: checkpoint
indietyp Mar 1, 2026
1cd32fa
fix: remove the old traversals intermediary
indietyp Mar 1, 2026
40a21e2
fix: remove the old traversals intermediary
indietyp Mar 1, 2026
92bc0fe
chore: remove old version
indietyp Mar 1, 2026
74ccc16
feat: sketch out the cost vec
indietyp Mar 2, 2026
e0472f6
feat: checkpoitn
indietyp Mar 2, 2026
cbd16fc
feat: checkpoint
indietyp Mar 2, 2026
b168049
feat: checkpoint
indietyp Mar 2, 2026
37ab5c8
feat: checkpoint
indietyp Mar 2, 2026
7ba38b2
fix: doc cleanup
indietyp Mar 2, 2026
4aeb8d9
fix: suggestions from code review
indietyp Mar 2, 2026
f71fd04
fix: suggestions from code review
indietyp Mar 2, 2026
904031c
fix: ordering
indietyp Mar 3, 2026
b32bd45
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