docs: Add execution_count to basic_block_t

Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
Ronald Caesar
2025-12-25 22:33:30 -04:00
parent dc3a8b8fb8
commit f5264b0eec

View File

@@ -223,5 +223,8 @@ typedef struct
{
uint32_t instruction_start_index;
uint32_t instruction_count;
// Used to order hot and cold blocks in memory.
uint32_t execution_count;
} basic_block_t;
```