Merge remote-tracking branch

'origin/GP-2542_ghizard_Fix_MSFT_Demangler_Apply_Function_Calling_Conventions_Flag'
into patch (Closes #4590)
This commit is contained in:
Ryan Kurtz 2022-09-14 01:27:27 -04:00
commit 9134b35af6

View file

@ -67,6 +67,9 @@ public class MicrosoftDemanglerAnalyzer extends AbstractDemanglerAnalyzer {
public void optionsChanged(Options options, Program program) {
applyFunctionSignature =
options.getBoolean(OPTION_NAME_APPLY_SIGNATURE, applyFunctionSignature);
applyCallingConvention =
options.getBoolean(OPTION_NAME_APPLY_CALLING_CONVENTION, applyCallingConvention);
}
@Override