make_bool
: BOOL { $$ = cast(get_type("bool"), make_bool($1)); }
| typecast BOOL { $$ = cast($1, make_bool($2)); }
static data_t make_bool(bool);