mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Model return slot as parameter in lowering (#4457)
Co-authored-by: Richard Smith <richard@metafoo.co.uk>
This commit is contained in:
co-authored by
Richard Smith
parent
145c44b66c
commit
ac5cc33da4
@@ -49,7 +49,7 @@ auto FunctionContext::TryToReuseBlock(SemIR::InstBlockId block_id,
|
||||
return true;
|
||||
}
|
||||
|
||||
auto FunctionContext::LowerBlock(SemIR::InstBlockId block_id) -> void {
|
||||
auto FunctionContext::LowerBlockContents(SemIR::InstBlockId block_id) -> void {
|
||||
for (auto inst_id : sem_ir().inst_blocks().Get(block_id)) {
|
||||
LowerInst(inst_id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user