GP-6791 re-arranged analyzer order

This commit is contained in:
emteere
2026-05-07 19:21:23 +00:00
committed by Ryan Kurtz
parent 9404702472
commit 15e695adc3
2 changed files with 4 additions and 4 deletions
@@ -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();
} }
@@ -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();