* Update the stack flags using the object flags, allowing callers * to monkey with the stack flags without even knowing they exist. */
| 4245 | * to monkey with the stack flags without even knowing they exist. |
| 4246 | */ |
| 4247 | static void |
| 4248 | xo_stack_set_flags (xo_handle_t *xop) |
| 4249 | { |
| 4250 | if (XOF_ISSET(xop, XOF_NOT_FIRST)) { |
| 4251 | xo_stack_t *xsp = &xop->xo_stack[xop->xo_depth]; |
| 4252 | |
| 4253 | xsp->xs_flags |= XSF_NOT_FIRST; |
| 4254 | XOF_CLEAR(xop, XOF_NOT_FIRST); |
| 4255 | } |
| 4256 | } |
| 4257 | |
| 4258 | static void |
| 4259 | xo_format_prep (xo_handle_t *xop, xo_xff_flags_t flags) |
no outgoing calls
no test coverage detected