| 813 | } |
| 814 | |
| 815 | static cbm_expr_t *expr_leaf(cbm_condition_t c) { |
| 816 | cbm_expr_t *e = calloc(CBM_ALLOC_ONE, sizeof(cbm_expr_t)); |
| 817 | e->type = EXPR_CONDITION; |
| 818 | e->cond = c; |
| 819 | return e; |
| 820 | } |
| 821 | |
| 822 | static cbm_expr_t *expr_binary(cbm_expr_type_t type, cbm_expr_t *left, cbm_expr_t *right) { |
| 823 | cbm_expr_t *e = calloc(CBM_ALLOC_ONE, sizeof(cbm_expr_t)); |
no outgoing calls
no test coverage detected