From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1314) id A60B4385842A; Mon, 16 Jan 2023 23:58:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A60B4385842A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1673913534; bh=GNaXvuh3KenpzTZB+YIjA5A1uHAJcbpS93jifnwpKsw=; h=From:To:Subject:Date:From; b=Mz91D6XbIoHk1sjOcahZ/1xHkX29KdJtp3YROwJGYFRjtMdM/ot3cxjXNu4xTUeT0 OVQnzcioRwMR25/W5fbCQeEZjt3jpFI8P9xulH/8wFBPdpnjPu3y+ByhiNx0cbshuL j7BpdBIZdjmce0DwX3ZfFlefqcMgq7P3HHkwvusA= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Andrew Pinski To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-5220] Remove reference to Solaris 9 in comment of add_options_for_tls X-Act-Checkin: gcc X-Git-Author: Andrew Pinski X-Git-Refname: refs/heads/trunk X-Git-Oldrev: 8ed40069e7437c318fdad9efa066c5d5be42baf7 X-Git-Newrev: 35627c5fb6a51e31ae651a0c79f0775f4290a86e Message-Id: <20230116235854.A60B4385842A@sourceware.org> Date: Mon, 16 Jan 2023 23:58:54 +0000 (GMT) List-Id: https://gcc.gnu.org/g:35627c5fb6a51e31ae651a0c79f0775f4290a86e commit r13-5220-g35627c5fb6a51e31ae651a0c79f0775f4290a86e Author: Andrew Pinski Date: Mon Jan 16 23:53:33 2023 +0000 Remove reference to Solaris 9 in comment of add_options_for_tls 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. Diff: --- 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*]) &&