| 608 | |
| 609 | |
| 610 | void sp_parser_data::do_cont_backpatch(uint dest) |
| 611 | { |
| 612 | sp_lex_branch_instr *i; |
| 613 | |
| 614 | while ((i= m_cont_backpatch.head()) && i->get_cont_dest() == m_cont_level) |
| 615 | { |
| 616 | i->set_cont_dest(dest); |
| 617 | m_cont_backpatch.pop(); |
| 618 | } |
| 619 | |
| 620 | --m_cont_level; |
| 621 | } |
| 622 | |
| 623 | |
| 624 | void sp_parser_data::process_new_sp_instr(THD* thd, sp_instr *i) |
nothing calls this directly
no test coverage detected