From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from server.nextmovesoftware.com (server.nextmovesoftware.com [162.254.253.69]) by sourceware.org (Postfix) with ESMTPS id A00C43858D3C for ; Fri, 11 Mar 2022 17:50:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A00C43858D3C Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=nextmovesoftware.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=nextmovesoftware.com DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=nextmovesoftware.com; s=default; h=Content-Type:MIME-Version:Message-ID: Date:Subject:To:From:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=94xdeIHgDNVaW1x6hRBNKStRll2J/Go1bjfk6aW2kic=; b=kIUAiAmXqvfhpczg5yLyX9csi+ DRh9iVgcqsxpl0Iz1voG91MFiWq5L5I9o7QBM1WcCuzrVUiMlBjY5t4UW5cRP3ob3HgweK0HqrORE rDYEUcD0v3pGrxNtXXaFj1v32GQx84xe3DIEWVWvBWs17tfRXLYW7Ra7t+UEoGum66pK1auQQhglC eGp6m/71O7rJYFfrE1EpXFn5dLU7JaV7PRupkz/T9L705dBm92yzx1pL6M171Yx0ra/04/piqSKmn ZMnXvjJAcVSHaVY+DG6XDq3B3QsULWUTveOxgzO9k/h/FgFwb5A5/ReST0HYCXRw5V34ZaBV/YTQh lsjnNeGg==; Received: from host86-186-213-42.range86-186.btcentralplus.com ([86.186.213.42]:55465 helo=Dell) by server.nextmovesoftware.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nSjPS-0003fc-06 for gcc-patches@gcc.gnu.org; Fri, 11 Mar 2022 12:50:38 -0500 From: "Roger Sayle" To: "'GCC Patches'" Subject: [Committed] Update g++.dg/other/pr84964.C for ia32 (and similar) targets. Date: Fri, 11 Mar 2022 17:50:36 -0000 Message-ID: <01f501d83570$842cfde0$8c86f9a0$@nextmovesoftware.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_01F6_01D83570.842F47D0" X-Mailer: Microsoft Outlook 16.0 Thread-Index: Adg1bpEMef8i8nQuTWS1jreyCeescA== Content-Language: en-gb X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server.nextmovesoftware.com X-AntiAbuse: Original Domain - gcc.gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - nextmovesoftware.com X-Get-Message-Sender-Via: server.nextmovesoftware.com: authenticated_id: roger@nextmovesoftware.com X-Authenticated-Sender: server.nextmovesoftware.com: roger@nextmovesoftware.com X-Source: X-Source-Args: X-Source-Dir: X-Spam-Status: No, score=-12.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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: Fri, 11 Mar 2022 17:50:39 -0000 This is a multipart message in MIME format. ------=_NextPart_000_01F6_01D83570.842F47D0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit The "sorry, unimplemented" message in the new g++.dg/other/pr84964.C is apparently dependent upon whether the target passes multi-gigabyte arguments on the stack. This tweaks the testcase to just confirm that it no longer ICEs, not the specific set of warnings/errors triggered. Committed as obvious. 2022-03-11 Roger Sayle gcc/testsuite/ChangeLog PR c++/84964 * g++.dg/other/pr84964.C: Tweak test to check for the ICE, not for the (target-dependent) sorry. Sorry for the noise. Roger -- ------=_NextPart_000_01F6_01D83570.842F47D0 Content-Type: text/plain; name="patchcp4b.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="patchcp4b.txt" diff --git a/gcc/testsuite/g++.dg/other/pr84964.C = b/gcc/testsuite/g++.dg/other/pr84964.C=0A= index 0f2f6f3..48cbefb 100644=0A= --- a/gcc/testsuite/g++.dg/other/pr84964.C=0A= +++ b/gcc/testsuite/g++.dg/other/pr84964.C=0A= @@ -1,7 +1,7 @@=0A= /* { dg-do compile } */=0A= =0A= struct a {=0A= - short b : -1ULL; // { dg-warning "exceeds its type" }=0A= + short b : -1ULL;=0A= };=0A= -void c(...) { c(a()); } // { dg-message "sorry, unimplemented" }=0A= -=0A= +void c(...) { c(a()); }=0A= +// { dg-excess-errors "" }=0A= ------=_NextPart_000_01F6_01D83570.842F47D0--