mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-28 08:58:34 +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,
|
public FindNoReturnFunctionsAnalyzer(String name, String description,
|
||||||
AnalyzerType analyzerType) {
|
AnalyzerType analyzerType) {
|
||||||
super(name, description, analyzerType);
|
super(name, description, analyzerType);
|
||||||
setPriority(AnalysisPriority.DISASSEMBLY.after());
|
setPriority(AnalysisPriority.DISASSEMBLY.after().after());
|
||||||
setSupportsOneTimeAnalysis();
|
setSupportsOneTimeAnalysis();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -4,9 +4,9 @@
|
|||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
*
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* 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,
|
public CallFixupAnalyzer(String name, AnalyzerType analyzerType,
|
||||||
boolean supportsOneTimeAnalysis) {
|
boolean supportsOneTimeAnalysis) {
|
||||||
super(name, DESCRIPTION, analyzerType);
|
super(name, DESCRIPTION, analyzerType);
|
||||||
setPriority(AnalysisPriority.DISASSEMBLY.after().after());
|
setPriority(AnalysisPriority.DISASSEMBLY.after());
|
||||||
setDefaultEnablement(true);
|
setDefaultEnablement(true);
|
||||||
if (supportsOneTimeAnalysis) {
|
if (supportsOneTimeAnalysis) {
|
||||||
setSupportsOneTimeAnalysis();
|
setSupportsOneTimeAnalysis();
|
||||||
|
|||||||
Reference in New Issue
Block a user