refactor(mir): phase260 p0 edge-args plumbing (strangler) + ssot api + docs

This commit is contained in:
2025-12-21 04:34:22 +09:00
parent 4496b6243d
commit 4dfe3349bf
42 changed files with 1044 additions and 187 deletions

View File

@ -146,7 +146,7 @@ fn build_string_const_mir_module() -> MirModule {
});
// return %str
block.terminator = Some(MirInstruction::Return {
block.set_terminator(MirInstruction::Return {
value: Some(str_value),
});
@ -193,7 +193,7 @@ fn build_multiple_string_const_mir_module() -> MirModule {
});
// return %str1
block.terminator = Some(MirInstruction::Return {
block.set_terminator(MirInstruction::Return {
value: Some(str1_value),
});