| 560 | } |
| 561 | |
| 562 | void RowScratchRegisters::SetStartLine() { |
| 563 | LineType current_lt = GetLineType(); |
| 564 | if (current_lt != LT_UNKNOWN && current_lt != LT_START) { |
| 565 | tprintf("Trying to set a line to be START when it's already BODY.\n"); |
| 566 | } |
| 567 | if (current_lt == LT_UNKNOWN || current_lt == LT_BODY) { |
| 568 | hypotheses_.push_back_new(LineHypothesis(LT_START, NULL)); |
| 569 | } |
| 570 | } |
| 571 | |
| 572 | void RowScratchRegisters::SetBodyLine() { |
| 573 | LineType current_lt = GetLineType(); |
no test coverage detected