From: David Malcolm Date: Mon, 30 Nov 2020 22:37:50 +0000 (-0500) Subject: Unbreak build with --disable-analyzer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c1c6750f8d3d88708e4fe9994124e7afa089d939;p=gcc.git Unbreak build with --disable-analyzer I broke the build with --disable-analyzer with g:66dde7bc64b75d4a338266333c9c490b12d49825, due to: ../../src/gcc/analyzer/analyzer-pass.cc: In member function ‘virtual unsigned int {anonymous}::pass_analyzer::execute(function*)’: ../../src/gcc/analyzer/analyzer-pass.cc:86:3: error: ‘sorry_no_analyzer’ was not declared in this scope 86 | sorry_no_analyzer (); | ^~~~~~~~~~~~~~~~~ Fixed by including the relevant header file. Sorry about the breakage. gcc/analyzer/ChangeLog: * analyzer-pass.cc: Include "analyzer/analyzer.h" for the declaration of sorry_no_analyzer; include "tree.h" and "function.h" as these are needed by it. --- diff --git a/gcc/analyzer/analyzer-pass.cc b/gcc/analyzer/analyzer-pass.cc index 1f65bf8b154..333f87b7897 100644 --- a/gcc/analyzer/analyzer-pass.cc +++ b/gcc/analyzer/analyzer-pass.cc @@ -25,6 +25,9 @@ along with GCC; see the file COPYING3. If not see #include "tree-pass.h" #include "diagnostic.h" #include "options.h" +#include "tree.h" +#include "function.h" +#include "analyzer/analyzer.h" #include "analyzer/engine.h" namespace {