From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 62418 invoked by alias); 30 Nov 2016 07:47:13 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 62397 invoked by uid 89); 30 Nov 2016 07:47:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=Hx-languages-length:725 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-vk0-f66.google.com Received: from mail-vk0-f66.google.com (HELO mail-vk0-f66.google.com) (209.85.213.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 30 Nov 2016 07:47:02 +0000 Received: by mail-vk0-f66.google.com with SMTP id p9so8365802vkd.1; Tue, 29 Nov 2016 23:47:02 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to:cc; bh=bm8FRoISb1iZVZ6FGG24Hfq3CS6zx8EVorBsDZ2AA8g=; b=G30QOrmf8qyYFdGIhu0ARYIk+bfVF1ZJdXc1h/Zd67zSkQK6/nwOBrWJSsndYmsNAx 6oQvClKlr+BH/t9fks8mIrPHWmFqcTop6AScHd0JrJBv6+R2z+k9O2ZSVkwoascJbBOm AQ3DfRPoMi3Q0OHur0yGbwYCHqDb+atirZzxIXRCrbtQ2p7E+MbzS36MQwmVIJcbsoIt GE1N8+h1Bq+QapAvdPyAJzxMvFMeDGDiCR23tvqhaGiTlFLKRYT7I1Qk0jasKZEgG+q4 Sw5qYd0ofFGsxVIEyG/Q0mRxWtd6DF2jc43Kt6wGS+BbJXUgI4fNbdImhtIueEuEUeDD HHFA== X-Gm-Message-State: AKaTC03ILTsTWUoat/par/KUJBW4xlJfEWU8OO+Qh5ZF8kX3rFpXpASozJbQzvH+rwS7d94I0Ar/BtVipNgfhw== X-Received: by 10.31.135.199 with SMTP id j190mr12017327vkd.62.1480492020848; Tue, 29 Nov 2016 23:47:00 -0800 (PST) MIME-Version: 1.0 Received: by 10.103.135.215 with HTTP; Tue, 29 Nov 2016 23:47:00 -0800 (PST) From: Uros Bizjak Date: Wed, 30 Nov 2016 07:47:00 -0000 Message-ID: Subject: Re: [patch part, libgcc] Add AVX-specific matmul To: "gcc-patches@gcc.gnu.org" Cc: Thomas Koenig , Fortran List Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2016-11/txt/msg02982.txt.bz2 > the patch at https://gcc.gnu.org/ml/fortran/2016-11/msg00246.html > (the one going to gcc-patches was rejected due to size of > regernerated files) contains one libgcc change, which exposes > the __cpu_model interface fox i386 to libgfortran. > > The Fortran bits are OKd, but I need an approval from a libgcc > maintainer (or some hint how to do this better :-). > > 2016-11-27 Thomas Koenig > > PR fortran/78379 > * config/i386/cpuinfo.c: Move denums for processor vendors, > processor type, processor subtypes and declaration of > struct __processor_model into > * config/i386/cpuinfo.h: New header file. The above x86 specific part is OK. Uros.