Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
9dcc6d8
feat: checkpoint
indietyp Feb 28, 2026
73482a0
feat: convert EntityPath to bitset
indietyp Feb 28, 2026
3362463
fix: suggestions from code review
indietyp Feb 28, 2026
885a006
fix: suggestions from code review
indietyp Feb 28, 2026
2400df5
feat: move to shared infrastructure
indietyp Feb 28, 2026
8d76664
feat: traversal path
indietyp Feb 28, 2026
d9208e6
feat: move analysis traversal pass (WIP)
indietyp Feb 28, 2026
87b184f
feat: checkpoint
indietyp Feb 28, 2026
4fdcf63
feat: checkpoint
indietyp Mar 1, 2026
efb0b85
feat: checkpoint
indietyp Mar 1, 2026
8e95f62
feat: checkpoint
indietyp Mar 1, 2026
4b6a619
feat: rework tests
indietyp Mar 1, 2026
410f955
feat: define lattice over the entity
indietyp Mar 1, 2026
960d725
feat: checkpoint
indietyp Mar 1, 2026
7aa802a
feat: define lattice over the entity
indietyp Mar 1, 2026
1642934
feat: terminator placement
indietyp Mar 1, 2026
1d5b5fd
feat: terminator placement
indietyp Mar 1, 2026
575cf3b
chore: tests
indietyp Mar 1, 2026
21e1b5c
feat: re-enable unused lints
indietyp Mar 1, 2026
b15d420
feat: checkpoint
indietyp Mar 1, 2026
dac3186
fix: remove the old traversals intermediary
indietyp Mar 1, 2026
d3fc684
fix: remove the old traversals intermediary
indietyp Mar 1, 2026
eb83e70
chore: remove old version
indietyp Mar 1, 2026
ef8e439
feat: sketch out the cost vec
indietyp Mar 2, 2026
4789492
feat: checkpoitn
indietyp Mar 2, 2026
bcd450e
feat: checkpoint
indietyp Mar 2, 2026
34e44d3
feat: checkpoint
indietyp Mar 2, 2026
cc32a50
feat: checkpoint
indietyp Mar 2, 2026
de3ba9b
fix: doc cleanup
indietyp Mar 2, 2026
f67d624
fix: suggestions from code review
indietyp Mar 2, 2026
f85ce1d
fix: suggestions from code review
indietyp Mar 2, 2026
e6439e0
fix: ordering
indietyp Mar 3, 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