From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1033) id 0D78F3858CDA; Fri, 20 Oct 2023 19:53:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0D78F3858CDA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1697831591; bh=RjLZ/Q62vnQowvrx670sjozQksWklRHHf+cprt3PQIY=; h=From:To:Subject:Date:From; b=gG/KvP2dp+Y1Bg9gzqYUqyPYhls6FuyK0xswkY3pHXSuyeNPewWDo/XdWdoHU0ZzH PMykEvbM4YAKOmvMapAUBAzsSfUeKvXIVqjy6JRAf5zPsJ0r+dO8UskKy9zxh370Kw xebPB6tOgTBoaoj4x+0bU7st+qIOa3wXaaXglh2Y= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: David Edelsohn To: gcc-cvs@gcc.gnu.org Subject: [gcc r14-4803] bootstrap: tm_p.h requires memmodel.h on SPARC. X-Act-Checkin: gcc X-Git-Author: David Edelsohn X-Git-Refname: refs/heads/master X-Git-Oldrev: 281699fbff6262766674ab13087d37db751cd40a X-Git-Newrev: 8f75e6cf583cf8db16334c0ba323801cbc9f4e7f Message-Id: <20231020195311.0D78F3858CDA@sourceware.org> Date: Fri, 20 Oct 2023 19:53:11 +0000 (GMT) List-Id: https://gcc.gnu.org/g:8f75e6cf583cf8db16334c0ba323801cbc9f4e7f commit r14-4803-g8f75e6cf583cf8db16334c0ba323801cbc9f4e7f Author: David Edelsohn Date: Fri Oct 20 15:51:51 2023 -0400 bootstrap: tm_p.h requires memmodel.h on SPARC. SPARC target header references memmodel, which requires memmodel.h. gcc/ChangeLog: * gimple-harden-control-flow.cc: Include memmodel.h. Signed-off-by: David Edelsohn Diff: --- gcc/gimple-harden-control-flow.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/gimple-harden-control-flow.cc b/gcc/gimple-harden-control-flow.cc index 1b345dab766c..441df5ac21c6 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 "memmodel.h" #include "tm_p.h" #include "tree.h" #include "fold-const.h"