| 16 | static struct expr *expr_eliminate_yn(struct expr *e); |
| 17 | |
| 18 | struct expr *expr_alloc_symbol(struct symbol *sym) |
| 19 | { |
| 20 | struct expr *e = xcalloc(1, sizeof(*e)); |
| 21 | e->type = E_SYMBOL; |
| 22 | e->left.sym = sym; |
| 23 | return e; |
| 24 | } |
| 25 | |
| 26 | struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) |
| 27 | { |
no test coverage detected