From patchwork Wed Nov 18 12:03:55 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ilya Enkovich X-Patchwork-Id: 545971 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 912CA14141D for ; Wed, 18 Nov 2015 23:04:31 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=AyorBU2L; dkim-atps=neutral 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:subject:message-id:mime-version:content-type; q=dns; s= default; b=XoO8L6HypgWLptZ64FR/AIEJPTAn4ZlYeuJfTicHDqQsPlLUBfiNS e4BHvZbZNO98GU/iptP6AhC6GbSmLOsvIcjcQABbtu2mOto9I6N9St13+z5iEGS7 Bo6GY4cQ0ezLE1gvLNOaOGfbf8JGs4lG+EVxA86hw1T6rFRDlLKKJs= 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:subject:message-id:mime-version:content-type; s= default; bh=MIyM9mR3TBWS2tZ2f+pGvHd+e+0=; b=AyorBU2LeVObGPGqEt6J nZVTTBC91q0NgtW2ZZzw3LbxhTI/MhHjaHyuI41eQ9858gapf+QY3d9GQ6ChOoSW L4WdPzOONCxhehQae+H2TgMhSRAdxQqxd5c5ji3ubgoKE638q9eZ8RgpF8D6x+N5 dPBQIFcRpaPHJN87CI70hkI= Received: (qmail 89623 invoked by alias); 18 Nov 2015 12:04:25 -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 89608 invoked by uid 89); 18 Nov 2015 12:04:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ig0-f170.google.com Received: from mail-ig0-f170.google.com (HELO mail-ig0-f170.google.com) (209.85.213.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 18 Nov 2015 12:04:22 +0000 Received: by igvg19 with SMTP id g19so115963835igv.1 for ; Wed, 18 Nov 2015 04:04:20 -0800 (PST) X-Received: by 10.50.20.138 with SMTP id n10mr2672223ige.11.1447848260736; Wed, 18 Nov 2015 04:04:20 -0800 (PST) Received: from msticlxl57.ims.intel.com ([134.134.139.76]) by smtp.gmail.com with ESMTPSA id s95sm1111721ioe.16.2015.11.18.04.04.19 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 18 Nov 2015 04:04:20 -0800 (PST) Date: Wed, 18 Nov 2015 15:03:55 +0300 From: Ilya Enkovich To: gcc-patches@gcc.gnu.org Subject: [PATCH, PR target/68405, i386, committed] Add missing break Message-ID: <20151118115109.GC42296@msticlxl57.ims.intel.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes Hi, This patch adds missing break for ix86_expand_mask_vec_cmp. Bootstrapped and tested on x86_64-unknown-linux-gnu. Committed to trunk as obvious. Thanks, Ilya --- gcc/ 2015-11-18 Ilya Enkovich PR target/68405 * config/i386/i386.c (ix86_expand_mask_vec_cmp): Add missing break. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 6173dae..43cbdfb 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -22948,6 +22948,8 @@ ix86_expand_mask_vec_cmp (rtx operands[]) case GEU: case LTU: unspec_code = UNSPEC_UNSIGNED_PCMP; + break; + default: unspec_code = UNSPEC_PCMP; }