| 32 | } |
| 33 | |
| 34 | struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) |
| 35 | { |
| 36 | struct expr *e = xcalloc(1, sizeof(*e)); |
| 37 | e->type = type; |
| 38 | e->left.expr = e1; |
| 39 | e->right.expr = e2; |
| 40 | return e; |
| 41 | } |
| 42 | |
| 43 | struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) |
| 44 | { |
no test coverage detected