aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2024-08-27 16:13:08 +0200
committerMarc Poulhiès <dkm@gcc.gnu.org>2024-09-10 09:44:11 +0200
commit73dc46f47be6157eaebc3fd089f57fab2304bb01 (patch)
treec7c5e72cab36dd95acf73079c0e5b4221a03acaf
parent4930e82f63b98fa637e27a53f1722fe63b7e3be2 (diff)
downloadgcc-73dc46f47be6157eaebc3fd089f57fab2304bb01.zip
gcc-73dc46f47be6157eaebc3fd089f57fab2304bb01.tar.gz
gcc-73dc46f47be6157eaebc3fd089f57fab2304bb01.tar.bz2
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.
-rw-r--r--gcc/ada/gcc-interface/misc.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ada/gcc-interface/misc.cc b/gcc/ada/gcc-interface/misc.cc
index 645937f..2aa1bfd 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"