Skip to content
Merged
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
24111cb
feat: move to shared infrastructure
indietyp Feb 28, 2026
baef00f
feat: traversal path
indietyp Feb 28, 2026
aa40562
feat: move analysis traversal pass (WIP)
indietyp Feb 28, 2026
cd6baa9
feat: checkpoint
indietyp Feb 28, 2026
d2ee68c
feat: checkpoint
indietyp Mar 1, 2026
a21ea99
feat: checkpoint
indietyp Mar 1, 2026
88f2d8a
feat: checkpoint
indietyp Mar 1, 2026
03c4bcf
feat: rework tests
indietyp Mar 1, 2026
b389647
feat: define lattice over the entity
indietyp Mar 1, 2026
7492505
feat: checkpoint
indietyp Mar 1, 2026
7b7b4ce
feat: define lattice over the entity
indietyp Mar 1, 2026
ee1599a
feat: terminator placement
indietyp Mar 1, 2026
a8d79b8
feat: terminator placement
indietyp Mar 1, 2026
9820561
chore: tests
indietyp Mar 1, 2026
075aa8e
feat: re-enable unused lints
indietyp Mar 1, 2026
61fd60c
feat: checkpoint
indietyp Mar 1, 2026
88b1d3f
fix: remove the old traversals intermediary
indietyp Mar 1, 2026
bcd7843
fix: remove the old traversals intermediary
indietyp Mar 1, 2026
e5a2d40
chore: remove old version
indietyp Mar 1, 2026
b09ce46
feat: sketch out the cost vec
indietyp Mar 2, 2026
0c6d03a
feat: checkpoitn
indietyp Mar 2, 2026
4858526
feat: checkpoint
indietyp Mar 2, 2026
f95aca9
feat: checkpoint
indietyp Mar 2, 2026
b3bb2f4
feat: checkpoint
indietyp Mar 2, 2026
67fd5b1
fix: doc cleanup
indietyp Mar 2, 2026
690576f
fix: suggestions from code review
indietyp Mar 2, 2026
db22292
fix: suggestions from code review
indietyp Mar 2, 2026
c4f32d5
fix: ordering
indietyp Mar 3, 2026
575ea9f
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