diff options
Diffstat (limited to 'lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp')
| -rw-r--r-- | lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp | 15 | 
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp b/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp index b5d0f6620a1d..d0def6918932 100644 --- a/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp @@ -1,9 +1,8 @@  //===- AnalysisOrderChecker - Print callbacks called ------------*- C++ -*-===//  // -//                     The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception  //  //===----------------------------------------------------------------------===//  // @@ -45,8 +44,8 @@ class AnalysisOrderChecker                       check::LiveSymbols> {    bool isCallbackEnabled(AnalyzerOptions &Opts, StringRef CallbackName) const { -    return Opts.getCheckerBooleanOption("*", false, this) || -        Opts.getCheckerBooleanOption(CallbackName, false, this); +    return Opts.getCheckerBooleanOption(this, "*") || +           Opts.getCheckerBooleanOption(this, CallbackName);    }    bool isCallbackEnabled(CheckerContext &C, StringRef CallbackName) const { @@ -176,3 +175,7 @@ public:  void ento::registerAnalysisOrderChecker(CheckerManager &mgr) {    mgr.registerChecker<AnalysisOrderChecker>();  } + +bool ento::shouldRegisterAnalysisOrderChecker(const LangOptions &LO) { +  return true; +}  | 
