From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oo1-xc31.google.com (mail-oo1-xc31.google.com [IPv6:2607:f8b0:4864:20::c31]) by sourceware.org (Postfix) with ESMTPS id 33BDA3858C60 for ; Fri, 7 Jul 2023 06:29:49 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 33BDA3858C60 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-oo1-xc31.google.com with SMTP id 006d021491bc7-5657d8ecdd3so1086674eaf.1 for ; Thu, 06 Jul 2023 23:29:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1688711388; x=1691303388; h=cc:to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=lDHUH2d2+K/YSOVTgxRJkY+1iQ3XuRxjNbL/o5AkRtY=; b=Ign1YJKTeDA3MSPOb3B6JZobQhVkIVjtXdCUeAkqZo0G6tTCEnRcX/g89W82VtkQbj ibmULMDgL00ENfW1+jUsxZ0jyIhHuCku83qE1TbIz8mrF9sFQGL8jfAEU6cpZx/JClME pVurHqW0Oy8EqznxGoAY/NdEScXms1SJxPPqmHxEisF8bCPn7n5qPDD0h+HVf4w8Af5+ F+t+TH3Rzplzujw497cZQf70eSFKivfW9opN0popY+QZFrCan59kBUqxdKYjIdYFJskd BKxFzqzZRCuck60z24ErTiECUp/kJ/nP156nRdS8CCHek0xc6t62L3IFWCXBx6YaZydN Wu2w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1688711388; x=1691303388; h=cc:to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=lDHUH2d2+K/YSOVTgxRJkY+1iQ3XuRxjNbL/o5AkRtY=; b=Eri9XoRW/lj8v02sRWiGfYlZCMr4E07WXnen67ipOM3WDYdtbiJ50B/OJ7MJXPEV3U H5CiZVF2ms2M63r2bYUefVkxdAesmHzX3em7cuifk9O7z3Gi4Nxx7FATLlfeJ57xwl2F cNiwPHdUvKSScogTwQhYJIQBp6ASSCqKJQ0XO/ASdUEluV/4Z8bl6pABfebJ7aoWIoow 6EYpPa8Zds2Bivdiv6eCzqW18+o5AQgk3FR9Lin7qWdI/MhmfIjOBt9/cresq/rGFNOy qoXJVhxlXaXO+PtJD2QLeQT0BYUfxqTssDUz5DFWjp23KL55Cj9kj+4aMrmh8o52JeMS Eieg== X-Gm-Message-State: ABy/qLa17rHDh4+y3hiSum62O0JL5+IZfI/isF5ojkfUds/DNLMxEqjn BKQqo3kjcnMuCoNH7FGV+YtZODNKHswJEq1ASB1UTz1TOY6xOA== X-Google-Smtp-Source: APBJJlFy7LIHdXDlIhntI3l321yIrrmtYJDm8H6ZfOXzFzLZT3c8ebkDoXt2dlVpEb8sU/drz6oj0P/O+WnJDw/U5dw= X-Received: by 2002:a4a:641:0:b0:558:b482:c3b3 with SMTP id 62-20020a4a0641000000b00558b482c3b3mr2734030ooj.1.1688711388291; Thu, 06 Jul 2023 23:29:48 -0700 (PDT) MIME-Version: 1.0 From: Rishi Raj Date: Fri, 7 Jul 2023 11:59:37 +0530 Message-ID: Subject: [PATCH] lto: bypass-asm: Fixed test(U*) used but never defined error. To: gcc-patches@gcc.gnu.org Cc: Martin Jambor , Jan Hubicka Content-Type: multipart/alternative; boundary="0000000000006d65ab05ffdfc20a" X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,GIT_PATCH_0,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --0000000000006d65ab05ffdfc20a Content-Type: text/plain; charset="UTF-8" >From 5151cf943987347edbc3707f08f0da8cd9f49f88 Mon Sep 17 00:00:00 2001 From: Rishi Raj Date: Fri, 7 Jul 2023 10:15:57 +0530 Subject: [PATCH] lto: Fixed test(U*) used but never defined error. This Patch fixes the error during bootstrapped build. Signed-off-by: Rishi Raj --- gcc/lto-object.cc | 1 + gcc/lto/lto-lang.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/gcc/lto-object.cc b/gcc/lto-object.cc index 33eca5a7d81..097c81a686e 100644 --- a/gcc/lto-object.cc +++ b/gcc/lto-object.cc @@ -31,6 +31,7 @@ along with GCC; see the file COPYING3. If not see #include "gimple.h" #include "diagnostic-core.h" #include "tm.h" +#include "cgraph.h" #include "lto-streamer.h" #include "lto-section-names.h" #include "simple-object.h" diff --git a/gcc/lto/lto-lang.cc b/gcc/lto/lto-lang.cc index cf33bf178c2..35f60325c80 100644 --- a/gcc/lto/lto-lang.cc +++ b/gcc/lto/lto-lang.cc @@ -26,6 +26,7 @@ along with GCC; see the file COPYING3. If not see #include "basic-block.h" #include "tree.h" #include "gimple.h" +#include "cgraph.h" #include "stringpool.h" #include "diagnostic-core.h" #include "stor-layout.h" -- 2.40.1 --0000000000006d65ab05ffdfc20a--