| 82 | } |
| 83 | |
| 84 | inline void cCodeLabel::Rotate(const int rot, const int base) |
| 85 | { |
| 86 | for (int i = 0; i < m_nops.GetSize(); i++) { |
| 87 | m_nops[i] += rot; |
| 88 | if (m_nops[i] >= base) m_nops[i] -= base; |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | |
| 93 | inline cString cCodeLabel::AsString() const |
no test coverage detected