| 35 | |
| 36 | |
| 37 | void cCodeLabel::ReadString(const cString& label_str) |
| 38 | { |
| 39 | cString lbl(label_str); |
| 40 | lbl.Trim(); |
| 41 | m_nops.Resize(lbl.GetSize()); |
| 42 | |
| 43 | for (int i = 0; i < lbl.GetSize(); i++) { |
| 44 | int nop = lbl[i] - 'A'; |
| 45 | m_nops[i] = nop; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | |
| 50 | // This function returns true if the sub_label can be found within |
no test coverage detected