Increase the min size of an "interesting" func.

Seeing a bunch of forwarders and stuff that won't hash safely.
This commit is contained in:
Unknown W. Brackets 2013-12-18 23:58:45 -08:00
parent 438361d0bc
commit 9bb03072e6

View File

@ -507,7 +507,7 @@ namespace MIPSAnalyst {
for (auto it = functions.begin(), end = functions.end(); it != end; ++it) {
const AnalyzedFunction &f = *it;
// Small functions aren't very interesting.
if (!f.hasHash || f.size < 12) {
if (!f.hasHash || f.size <= 16) {
continue;
}
// Functions with default names aren't very interesting either.