| 357 | } |
| 358 | |
| 359 | void DisassemblyFunction::recheck() |
| 360 | { |
| 361 | u32 newHash = computeHash(address,size); |
| 362 | if (hash != newHash) |
| 363 | { |
| 364 | hash = newHash; |
| 365 | clear(); |
| 366 | load(); |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | int DisassemblyFunction::getNumLines() |
| 371 | { |
no test coverage detected