From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3252 invoked by alias); 16 Apr 2014 17:28:51 -0000 Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org Received: (qmail 3213 invoked by uid 89); 16 Apr 2014 17:28:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 4 recipients X-HELO: mail-la0-f42.google.com Received: from mail-la0-f42.google.com (HELO mail-la0-f42.google.com) (209.85.215.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 16 Apr 2014 17:28:50 +0000 Received: by mail-la0-f42.google.com with SMTP id ec20so8541283lab.1 for ; Wed, 16 Apr 2014 10:28:46 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.152.235.3 with SMTP id ui3mr6271812lac.2.1397669326117; Wed, 16 Apr 2014 10:28:46 -0700 (PDT) Received: by 10.152.136.107 with HTTP; Wed, 16 Apr 2014 10:28:46 -0700 (PDT) In-Reply-To: References: Date: Wed, 16 Apr 2014 17:28:00 -0000 Message-ID: Subject: Re: Remove obsolete Solaris 9 support From: Uros Bizjak To: Rainer Orth Cc: "gcc-patches@gcc.gnu.org" , Fortran List , "libstdc++" , java-patches@gcc.gnu.org, Bruce Korb , Eric Botcazou , Ian Lance Taylor , David Edelsohn , Paolo Bonzini Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2014-q2/txt/msg00007.txt.bz2 On Wed, Apr 16, 2014 at 1:16 PM, Rainer Orth wrote: > Now that 4.9 has branched, it's time to actually remove the obsolete > Solaris 9 configuration. Most of this is just legwork and falls under > my Solaris maintainership. > > A couple of questions, though: > > * Uros: I'm removing all sse_os_support() checks from the testsuite. > Solaris 9 was the only consumer, so it seems best to do away with it. This is OK, but please leave sse-os-check.h (and corresponding sse_os_support calls) in the testsuite. Just remove the Solaris 9 specific code from sse-os-check.h and always return 1, perhaps with the comment that all currently supported OSes support SSE instructions. Uros.