From patchwork Thu Oct 9 11:39:44 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kirill Yukhin X-Patchwork-Id: 398000 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 26AF91400AA for ; Thu, 9 Oct 2014 22:40:16 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:mime-version:content-type; q=dns; s=default; b=wbd8jv5A5MyCbWtT+ueDtMFakeb9hHR0oGb8KPUi8vnvjO9K4+ 0AoHsUUSWF0HGLXE7shO1OsAGgvXWsDb5fN+I2bNat6PDtUdqB8yFPXr9RXsaLrE MkOLUaevkIBkWbVhN1bFxKTf6g9Bn2674K0q36iSPbICUdRXJLdMkbYNk= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:mime-version:content-type; s= default; bh=FN2WXv8KcTOjPu+M00JR55sWVrI=; b=c3gh94v8ZI9meVmD0ck6 RSmwtCZg5xeeMqiOEsjAD4ZNn4MOLVk8eEGm3VTakiO5qfUHs8QYlWqbuS1xZs1y hxgEHG5u+cJR1WnPf4rUEOfC2vwS/nsSzsHgMseVEUQMgs9vyjIA3pRklIewq68/ +FA1sn7kSCbD21uBs8gBU1s= Received: (qmail 27774 invoked by alias); 9 Oct 2014 11:40:07 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 27762 invoked by uid 89); 9 Oct 2014 11:40:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-wg0-f43.google.com Received: from mail-wg0-f43.google.com (HELO mail-wg0-f43.google.com) (74.125.82.43) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 09 Oct 2014 11:40:00 +0000 Received: by mail-wg0-f43.google.com with SMTP id m15so1024064wgh.26 for ; Thu, 09 Oct 2014 04:39:57 -0700 (PDT) X-Received: by 10.180.95.163 with SMTP id dl3mr3518037wib.79.1412854797627; Thu, 09 Oct 2014 04:39:57 -0700 (PDT) Received: from msticlxl57.ims.intel.com (fmdmzpr01-ext.fm.intel.com. [192.55.54.36]) by mx.google.com with ESMTPSA id fv6sm5302000wib.2.2014.10.09.04.39.54 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 09 Oct 2014 04:39:57 -0700 (PDT) Date: Thu, 9 Oct 2014 15:39:44 +0400 From: Kirill Yukhin To: Uros Bizjak Cc: Jakub Jelinek , Richard Henderson , GCC Patches , kirill.yukhin@gmail.com Subject: [PATCH i386 AVX512] [71/n] [Obvious?] Remove redudant iterator attribute. Message-ID: <20141009113942.GH25028@msticlxl57.ims.intel.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes Hello, This obvious patch removes redundant iterator attribute Bootstrapped. Is it ok for trunk? gcc/ * config/i386/sse.md (define_mode_attr avx2_avx512f): Remove. --- Thanks, K diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index a833cd9..cf415c3 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -451,12 +451,6 @@ (V4SI "vec") (V8SI "avx2") (V2DI "vec") (V4DI "avx2")]) -(define_mode_attr avx2_avx512f - [(V4SI "avx2") (V8SI "avx2") (V16SI "avx512f") - (V2DI "avx2") (V4DI "avx2") (V8DI "avx512f") - (V8SF "avx2") (V16SF "avx512f") - (V4DF "avx2") (V8DF "avx512f")]) - (define_mode_attr avx2_avx512 [(V4SI "avx2") (V8SI "avx2") (V16SI "avx512f") (V2DI "avx2") (V4DI "avx2") (V8DI "avx512f")