From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-x136.google.com (mail-lf1-x136.google.com [IPv6:2a00:1450:4864:20::136]) by sourceware.org (Postfix) with ESMTPS id B04ED3835808 for ; Tue, 29 Jun 2021 03:05:58 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B04ED3835808 Received: by mail-lf1-x136.google.com with SMTP id w19so8068234lfk.5 for ; Mon, 28 Jun 2021 20:05:58 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to:cc; bh=TSbcR5+qvwIRp47LTCMZt1hMdb3faXSbef0mzizQGZU=; b=Iv6bGzwQsUve9hclqIxF/RVcrV8XXzy3lYeCC/Zh1l5CRSKKuB3bGbsA2CZxZ+hRt5 wdU7EZQb5jo7UiSYk/NPdWOCzm3bYABNXQe1kkjO+pWtFrd83llmBiuofyYQDchXapLc PlnyHaE5G73bg23GR47+WRgdNacQm0YieiaiN3opYPhHlzaGoWUybuMvVE2eAM5D7r/V ekDvR9kU8ICNaUKZy37nYNy8xbD9DB/4UeCru5NBmXIWB9XJkQ+NKavY5uNYcGPMxAu2 pcsIDb84jNHSXtmaGgsh5rXsYCeUeCNglUYgrnUnQDlNrThJKfHsb1QBxoJjG3QEsUsg g9EA== X-Gm-Message-State: AOAM5310LJbTSyghdFWnP8tdVExubdDDOtTTusYISrqBK/fegXMqCx04 oCHGEtLud7yWVOY4LAkZjJPcMnDbjX2Lsq7+evs= X-Google-Smtp-Source: ABdhPJwNvX/hPCw6H+RIvduBxLASixqAFQ82KWrra4fNFcFVQktKPF+DovfyIc1G42xHcx3f7kfs2JFNToXrI/rl4g4= X-Received: by 2002:a05:6512:3e1b:: with SMTP id i27mr12700774lfv.15.1624935956447; Mon, 28 Jun 2021 20:05:56 -0700 (PDT) MIME-Version: 1.0 From: David Edelsohn Date: Mon, 28 Jun 2021 23:05:45 -0400 Message-ID: Subject: Re: [COMMITTED V10 3/7] CTF/BTF debug formats To: "Jose E. Marchesi" Cc: GCC Patches Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-7.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jun 2021 03:06:01 -0000 bootstrap: Include tm_p.h in btfout.c and ctfout.c. btfout.c and ctfout.c reference target-specific macros that may reference target-specific functions that are declared in a target-specific header. tm_p.h must be included to access the target-specific header. Bootstrapped on powerpc-ibm-aix7.2.3.0. Committed as obvious. Thanks, David gcc/ChangeLog: * btfout.c: Include tm_p.h * ctfout.c: Same. diff --git a/gcc/btfout.c b/gcc/btfout.c index 45954b4b7b9..2316dea5f27 100644 --- a/gcc/btfout.c +++ b/gcc/btfout.c @@ -26,6 +26,7 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "target.h" +#include "tm_p.h" #include "output.h" #include "dwarf2asm.h" #include "debug.h" diff --git a/gcc/ctfout.c b/gcc/ctfout.c index c264fd6661a..71d7a62e6ef 100644 --- a/gcc/ctfout.c +++ b/gcc/ctfout.c @@ -21,6 +21,7 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "target.h" +#include "tm_p.h" #include "output.h" #include "dwarf2asm.h" #include "debug.h"