Update control_flow_graph.cpp

added block->end back in
This commit is contained in:
Raul Ramirez 2024-08-16 07:45:09 -06:00 committed by GitHub
parent 3c277f0c53
commit 4eaa098677
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -111,6 +111,7 @@ void CFG::EmitBlocks() {
Block* block = block_pool.Create();
block->begin = start;
block->end = end;
block->begin_index = i;
block->end_index = i + 1;
block->end_inst = end_inst;