mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-3268 revised decompiler function override hash to factor in calling
convention
This commit is contained in:
parent
dd85623f3d
commit
edec5d9020
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ public class DataTypeSymbol {
|
|||
public static String generateHash(DataType dt) {
|
||||
String material;
|
||||
if (dt instanceof FunctionSignature)
|
||||
material = ((FunctionSignature) dt).getPrototypeString();
|
||||
material = ((FunctionSignature) dt).getPrototypeString(true);
|
||||
else if (dt instanceof TypeDef) {
|
||||
material = ((TypeDef) dt).getDataType().getPathName();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue