| 41 | } |
| 42 | |
| 43 | struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) |
| 44 | { |
| 45 | struct expr *e = xcalloc(1, sizeof(*e)); |
| 46 | e->type = type; |
| 47 | e->left.sym = s1; |
| 48 | e->right.sym = s2; |
| 49 | return e; |
| 50 | } |
| 51 | |
| 52 | struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) |
| 53 | { |
no test coverage detected