GP-1045 fixed VT calling convention apply markup issue

This commit is contained in:
ghidra007 2022-09-30 20:16:08 +00:00
parent 5b30bb95c0
commit 0de0f64a8e

View File

@ -469,6 +469,11 @@ public class FunctionSignatureStringable extends Stringable {
if (!returnInfo.isEquivalent(other.returnInfo)) { // storage not checked
return false;
}
if (!callingConventionName.equals(other.callingConventionName)) {
return false;
}
int paramCnt = parameterInfos.size();
if (paramCnt != other.parameterInfos.size()) {
return false;