| lib/SPVM/Builder/src/spvm_case_info.c | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 3 | 3 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | n/a | ||
| pod | n/a | ||
| total | 3 | 3 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | // Copyright (c) 2023 Yuki Kimoto | ||||||
| 2 | // MIT License | ||||||
| 3 | |||||||
| 4 | #include "spvm_case_info.h" | ||||||
| 5 | |||||||
| 6 | #include "spvm_allocator.h" | ||||||
| 7 | #include "spvm_compiler.h" | ||||||
| 8 | |||||||
| 9 | 9719 | SPVM_CASE_INFO* SPVM_CASE_INFO_new(SPVM_COMPILER* compiler) { | |||||
| 10 | 9719 | SPVM_CASE_INFO* case_info = SPVM_ALLOCATOR_alloc_memory_block_permanent(compiler->current_each_compile_allocator, sizeof(SPVM_CASE_INFO)); | |||||
| 11 | |||||||
| 12 | 9719 | return case_info; | |||||
| 13 | } |