| 574 | |
| 575 | |
| 576 | bool sp_parser_data::add_backpatch_entry(sp_branch_instr *i, |
| 577 | sp_label *label) |
| 578 | { |
| 579 | Backpatch_info *bp= (Backpatch_info *)sql_alloc(sizeof(Backpatch_info)); |
| 580 | |
| 581 | if (!bp) |
| 582 | return true; |
| 583 | |
| 584 | bp->label= label; |
| 585 | bp->instr= i; |
| 586 | return m_backpatch.push_front(bp); |
| 587 | } |
| 588 | |
| 589 | |
| 590 | void sp_parser_data::do_backpatch(sp_label *label, uint dest) |
nothing calls this directly
no test coverage detected