From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl1-x630.google.com (mail-pl1-x630.google.com [IPv6:2607:f8b0:4864:20::630]) by sourceware.org (Postfix) with ESMTPS id 69C933858D20 for ; Sun, 21 May 2023 18:25:58 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 69C933858D20 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-pl1-x630.google.com with SMTP id d9443c01a7336-1ae79528d4dso29711935ad.2 for ; Sun, 21 May 2023 11:25:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1684693557; x=1687285557; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=bFqDc21uHnyWNGXY+363cswULHXkc7Je+k87x3fUaiE=; b=KSWvpQX9kIJrjXcstKjFev5+UIr8wggCB9/n+3YrsCJvGGgbVIaTUHKipIyXkISq3A ffELBsqHb0nnJ5oKVuDCbMRn30mR6tWyQOfnLfQZNq7iddBuyNI9ciwFkzIZYXC3XXZz fiYP6IS2MCra7HPsuWJQ/YcdeLCuh6sF3dSrgrKSm41QkiLsBzbkk4rWMhEMBSvOdt9F WntjBSYbv9rd0kdE4V4jo4RwUhFhE4NJee9neQl9LEty9giadhzglhldkYfTiqEtvQ3t WR7pw3ITG0lwGeb96sQMekb6m+WKn3vaJxY8LxmvWY6pEDXuw9N1Po3nr/OXdFGPXDYi tJqg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1684693557; x=1687285557; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=bFqDc21uHnyWNGXY+363cswULHXkc7Je+k87x3fUaiE=; b=NC1d1x/lGI2R6dPPRIqHJkT1khol8MD9VI+JRBgSLqGfRsmsEfWRkmafz2elCno/xf F5MtxqRnZ8CyXDeO/wL5wMekOpRi3TdaIligasKFoHgKS0sNtxhulLWay3HivdYrgXPw HQ8nFpkj14dNpqx8DNU0tgdFoY3tSBMYzyNitovruh4XcRWnQV2YUeLO1ZLMN0Btptoc dzerFQjHOZjyT5uIhW3r61gknYbtRR3XttBvWc7tpj2Rm0zxBjvz4EQTOBjx9gQKj+MY 9+vhKv4W/aweaW9OHnGsh1t9kfwe2CLGs4M15DpR2A5Zajf/Efbq9iVtFRJBXNvg4C7H KDxg== X-Gm-Message-State: AC+VfDzJDYlAIAdwk0MG9ZNkwU3c7KhSMGDp6e241TtJ/FM1k/qRtF6l 8CLSUswl3Qfi+yIfgoGd/polns2R6MevnzrKrco= X-Google-Smtp-Source: ACHHUZ4FgAyu80cTLzyfA/zQjRRkCisj/lso7Lap7ZFgpi2nbD9dY+5Ze1zHr4mwsuz6YwiShK79Xa7OuK6kSp/UAvo= X-Received: by 2002:a17:902:ea0f:b0:1ad:c736:2090 with SMTP id s15-20020a170902ea0f00b001adc7362090mr10544332plg.3.1684693557329; Sun, 21 May 2023 11:25:57 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Andrew Pinski Date: Sun, 21 May 2023 11:25:44 -0700 Message-ID: Subject: Re: [PATCH 7/7] Expand directly for single bit test To: David Edelsohn Cc: Andrew Pinski , GCC Patches Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,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: On Sun, May 21, 2023 at 11:17=E2=80=AFAM David Edelsohn via Gcc-patches wrote: > > Hi, Andrew > > Thanks for this series of patches to improve do_store_flag. Unfortunatel= y > this specific patch in the series has caused a bootstrap failure on > powerpc-aix. I bisected this failure to this specific patch. Note that I > am building as 32 bit, so this could be a specific issue about bit size. > > * expr.cc (fold_single_bit_test): Rename to ... > (expand_single_bit_test): This and expand directly. > (do_store_flag): Update for the rename function. Did this include the fix I did for big-endian at r14-1022-g7f3df8e65c71e5 ? I had found that I broke big-endian last night with that patch and pushed the fix once I figured out what I did wrong. If you already tried post the fix, I will try to look into it as soon as possible. Thanks, Andrew > > > Thanks, David