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 1B5153858D32 for ; Mon, 16 Jan 2023 23:58:28 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 1B5153858D32 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 30GLgVBk029665 for ; Mon, 16 Jan 2023 15:58:27 -0800 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=9tgOboRm7YdPM52k3G3oMb+TL/OsUfzLXKnGRt7VUWg=; b=jvEPxUZHJWhHRAs6f5dL2YIvG5ojt/Ebia2crg0WY7YGWB8Ct66vHdCQG3mQJHHCHOGX FRy9i6ZtGDNumiNTOaGBCnrD70q+4cgh/k2TdPipwuwHLC6f2XlqeppSbBZD9Ilk6PmN Jr+9nw0hFdp5gRZtu8l2TxUdkx5RCi0PENV3XtkbA2UwbcB/hrUJPPVFe4PQoso8oUQj bpRBje0Q4nA9LpIZ4oG7Am+1K0PnwgqbbLonK7/CxJk+IEVtzuAleEgiuOdDyk7azJce xrUbY6JbAYwu5e4xJLgcJB68J3Cd3dU2OHlYcbYaH0bA5g8euIDAqNS0kXqcl9ZzieQG 7g== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3n3vst7yvw-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Mon, 16 Jan 2023 15:58:27 -0800 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Mon, 16 Jan 2023 15:58:25 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.42 via Frontend Transport; Mon, 16 Jan 2023 15:58:25 -0800 Received: from vpnclient.wrightpinski.org.com (unknown [10.69.242.67]) by maili.marvell.com (Postfix) with ESMTP id E71513F7065; Mon, 16 Jan 2023 15:58:24 -0800 (PST) From: Andrew Pinski To: CC: Andrew Pinski Subject: [COMMITTED] Remove reference to Solaris 9 in comment of add_options_for_tls Date: Mon, 16 Jan 2023 15:58:16 -0800 Message-ID: <20230116235816.658483-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-ORIG-GUID: 4DbsarngWUFlUbmqNUXiqKdyqsiQLTmP X-Proofpoint-GUID: 4DbsarngWUFlUbmqNUXiqKdyqsiQLTmP X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.219,Aquarius:18.0.923,Hydra:6.0.562,FMLib:17.11.122.1 definitions=2023-01-16_17,2023-01-13_02,2022-06-22_01 X-Spam-Status: No, score=-14.5 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_NONE,TXREP 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: Since r5-172-gd9f069ab4f6450, the code no longer matches the comment as the code for Solaris 9 support was removed. This just updates the comment to reference AIX only as the code does. Committed as obvious. gcc/testsuite/ChangeLog: * lib/target-supports.exp (add_options_for_tls): Remove reference to Solaris 9 in comments. --- gcc/testsuite/lib/target-supports.exp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index b906d4004be..38b95145117 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -869,8 +869,8 @@ proc check_effective_target_pcc_bitfield_type_matters { } { # Add to FLAGS all the target-specific flags needed to use thread-local storage. proc add_options_for_tls { flags } { - # On Solaris 9, __tls_get_addr/___tls_get_addr only lives in - # libthread, so always pass -pthread for native TLS. Same for AIX. + # On AIX, __tls_get_addr/___tls_get_addr only lives in + # libthread, so always pass -pthread for native TLS. # Need to duplicate native TLS check from # check_effective_target_tls_native to avoid recursion. if { ([istarget powerpc-ibm-aix*]) && -- 2.17.1