Merge remote-tracking branch 'origin/GT-3213_caheckman_PR-839_GregoryMorse_RangeHintComparator' into Ghidra_9.1

This commit is contained in:
Ryan Kurtz 2019-10-03 11:16:06 -04:00
commit 632778c0eb

View file

@ -289,7 +289,7 @@ bool RangeHint::compareRanges(const RangeHint *a,const RangeHint *b)
type_metatype bmeta = b->type->getMetatype();
if (ameta != bmeta)
return (ameta < bmeta); // Order more specific types first
return true;
return false; //comp(x, x) must be false for strict weak ordering
}
/// \param spc is the (stack) address space associated with this function's local variables