From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by sourceware.org (Postfix) with ESMTPS id 5E6933858D1E for ; Wed, 28 Jun 2023 07:23:45 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 5E6933858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=marvell.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=marvell.com Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 35S00e0F028967 for ; Wed, 28 Jun 2023 00:23:44 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=NIIkAZpUdxWewzcAaEnVfuztzAfPmnhXcpvykEc4OzU=; b=Jt5aLm6mRYNILZxHUSm8wljDBJ+CFAA0ENPCNKK/umy9UKo59410Q7UpGsd/HG1vOPp4 eN2JB78LvYKeB38ZEh3HpRUwtXqM0PIKxSdmhjQM/VIg1YV9zqajdvc4srIg1FMeWRTG fBRbUDSMVjujbtN12dNZa2h90P80z6JfSK1BXqDuNh0yA0WDEG70OqRWLO7//KJ7g69m uxR7ofCmRd785IpacmD0cwEA1IT+6fwgbuWQZZSJvhuMY1JJKI5VjHEheeqEU9MYHYYE 3ZNn6zVzgYdTZJt5Qg1WTP/+XNXEdh+LXvpEpa8dhkdxC6UPqNAj9QK0tJsAaiX9FJKk yw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3re00k3s35-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Wed, 28 Jun 2023 00:23:44 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Wed, 28 Jun 2023 00:23:42 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.48 via Frontend Transport; Wed, 28 Jun 2023 00:23:42 -0700 Received: from vpnclient.wrightpinski.org.com (unknown [10.69.242.187]) by maili.marvell.com (Postfix) with ESMTP id DAA9C3F7062; Wed, 28 Jun 2023 00:23:39 -0700 (PDT) From: Andrew Pinski To: CC: Andrew Pinski Subject: [COMMITTED] Add testcase for PR 110444 Date: Wed, 28 Jun 2023 00:22:48 -0700 Message-ID: <20230628072247.109808-1-apinski@marvell.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: klzCJodb41C0CMu2wkk3zl8LNwL2Mrsz X-Proofpoint-ORIG-GUID: klzCJodb41C0CMu2wkk3zl8LNwL2Mrsz X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.254,Aquarius:18.0.957,Hydra:6.0.591,FMLib:17.11.176.26 definitions=2023-06-28_04,2023-06-27_01,2023-05-22_02 X-Spam-Status: No, score=-14.3 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_NUMSUBJECT,RCVD_IN_DNSWL_LOW,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: This testcase was fixed after r14-2135-gd915762ea9043da85 and there was no testcase for it before so adding one is a good thing. Committed as obvious after testing the testcase to make sure it works. gcc/testsuite/ChangeLog: PR tree-optimization/110444 * gcc.c-torture/compile/pr110444-1.c: New test. --- gcc/testsuite/gcc.c-torture/compile/pr110444-1.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr110444-1.c diff --git a/gcc/testsuite/gcc.c-torture/compile/pr110444-1.c b/gcc/testsuite/gcc.c-torture/compile/pr110444-1.c new file mode 100644 index 00000000000..1cdb400f76f --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr110444-1.c @@ -0,0 +1,11 @@ +/* This used to ICE after SLP during match-and-simplify + as real_can_shorten_arithmetic was called with the vector + mode. */ +void f(float *a, float *b, float *c, int size) +{ + float t[2]; + t[0] = b[0] - (float)__builtin_pow(c[0], 2); + t[1] = b[1] - (float)__builtin_pow(c[1], 2); + a[0] = t[0]; + a[1] = t[1]; +} -- 2.31.1