| 239 | #define FLAG_CASE_RIGHT 0x40 // For case combinators, whether the right branch has ever been executed (1) or not (0). |
| 240 | |
| 241 | static inline bool get_tco_flag(const call *stack) { |
| 242 | return FLAG_TCO == (stack->flags & FLAG_TCO); |
| 243 | } |
| 244 | |
| 245 | static inline void set_tco_flag(call *stack, bool flag) { |
| 246 | if (flag) { |