From: David Edelsohn Date: Fri, 20 Oct 2023 18:12:54 +0000 (-0400) Subject: bootstrap: Include tm_p.h X-Git-Tag: basepoints/gcc-15~5338 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a663fe63889db486d577b20aff0730034400bfe9;p=thirdparty%2Fgcc.git bootstrap: Include tm_p.h ASM_GENERATE_INTERNAL_LABEL may use target-specific functions, so tm_p.h must be included. This fixes bootstrap breakage on AIX, at least. gcc/ChangeLog * gimple-harden-control-flow.cc: Include tm_p.h. Signed-off-by: David Edelsohn --- diff --git a/gcc/gimple-harden-control-flow.cc b/gcc/gimple-harden-control-flow.cc index 5c28fd07f332..1b345dab766c 100644 --- a/gcc/gimple-harden-control-flow.cc +++ b/gcc/gimple-harden-control-flow.cc @@ -23,6 +23,7 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "backend.h" +#include "tm_p.h" #include "tree.h" #include "fold-const.h" #include "gimple.h"