From: Eric Botcazou Date: Tue, 27 Aug 2024 14:13:08 +0000 (+0200) Subject: ada: Include missing associated header file X-Git-Tag: basepoints/gcc-16~5985 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73dc46f47be6157eaebc3fd089f57fab2304bb01;p=thirdparty%2Fgcc.git ada: Include missing associated header file memmodel.h must be included alongside tm_p.h for the sake of the SPARC port. gcc/ada/ * gcc-interface/misc.cc: Include memmodel.h before tm_p.h. --- diff --git a/gcc/ada/gcc-interface/misc.cc b/gcc/ada/gcc-interface/misc.cc index 645937f796c..2aa1bfd410b 100644 --- a/gcc/ada/gcc-interface/misc.cc +++ b/gcc/ada/gcc-interface/misc.cc @@ -28,6 +28,7 @@ #include "coretypes.h" #include "target.h" #include "tree.h" +#include "memmodel.h" #include "tm_p.h" #include "diagnostic.h" #include "opts.h"