mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-25 19:55:52 +08:00
GP-6791 re-arranged analyzer order
This commit is contained in:
+1
-1
@@ -89,7 +89,7 @@ public class FindNoReturnFunctionsAnalyzer extends AbstractAnalyzer {
|
||||
public FindNoReturnFunctionsAnalyzer(String name, String description,
|
||||
AnalyzerType analyzerType) {
|
||||
super(name, description, analyzerType);
|
||||
setPriority(AnalysisPriority.DISASSEMBLY.after());
|
||||
setPriority(AnalysisPriority.DISASSEMBLY.after().after());
|
||||
setSupportsOneTimeAnalysis();
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -47,7 +47,7 @@ public class CallFixupAnalyzer extends AbstractAnalyzer {
|
||||
public CallFixupAnalyzer(String name, AnalyzerType analyzerType,
|
||||
boolean supportsOneTimeAnalysis) {
|
||||
super(name, DESCRIPTION, analyzerType);
|
||||
setPriority(AnalysisPriority.DISASSEMBLY.after().after());
|
||||
setPriority(AnalysisPriority.DISASSEMBLY.after());
|
||||
setDefaultEnablement(true);
|
||||
if (supportsOneTimeAnalysis) {
|
||||
setSupportsOneTimeAnalysis();
|
||||
|
||||
Reference in New Issue
Block a user