From patchwork Fri Feb 21 09:20:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Thomas Schwinge X-Patchwork-Id: 322508 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 CB78F2C0326 for ; Fri, 21 Feb 2014 20:21:06 +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:from :to:cc:subject:in-reply-to:references:date:message-id :mime-version:content-type; q=dns; s=default; b=h2kzvTfFr/8vLVUX UETlcMio2hlozZmaFcztP86S/ZUoLzgyD1LUJBHMbtB9alOPWwHrFvkDkD6NLBNN ro+d/g6Hc1cIDVoIoHv77M7TrjjWmnO9sLvUnrd7i5rfJj4AHuOE2SIb+pla4C9n btIt6C/rk7eb1fZJaxHNlqOpkZI= 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:from :to:cc:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=default; bh=wt0BZLrm9iEL67XAM4QwKY HXsv4=; b=KCJ3phCh3cVKzxWJIagN7i80oDuxTxdvYMSDOSfwjFN6N/15wuPFmN YSZGS8I49/tmjEF3MKTKgOmdI7gRy8/VEzPIj/K6rf7wYyHmlxaqUM+Phbd4I91n V7lrn/IWJ3Rybof8z+AqaHvc0JkX8udC6tnwMGwXjFVUqrMqMswnc= Received: (qmail 8503 invoked by alias); 21 Feb 2014 09:20:58 -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 8493 invoked by uid 89); 21 Feb 2014 09:20:58 -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 autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 21 Feb 2014 09:20:55 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1WGmHo-0005rZ-8C from Thomas_Schwinge@mentor.com ; Fri, 21 Feb 2014 01:20:48 -0800 Received: from SVR-IES-FEM-02.mgc.mentorg.com ([137.202.0.106]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Fri, 21 Feb 2014 01:20:48 -0800 Received: from feldtkeller.schwinge.homeip.net (137.202.0.76) by SVR-IES-FEM-02.mgc.mentorg.com (137.202.0.106) with Microsoft SMTP Server id 14.2.247.3; Fri, 21 Feb 2014 09:20:46 +0000 From: Thomas Schwinge To: Aldy Hernandez CC: Jason Merrill , gcc-patches , "Iyer, Balaji V" , Jakub Jelinek Subject: Re: PING: Fwd: Re: [patch] implement Cilk Plus simd loops on trunk In-Reply-To: <528695CD.5080705@redhat.com> References: <521B8ECA.70806@redhat.com> <521D060E.9030601@redhat.com> <524C95F2.1010802@redhat.com> <52618287.8010705@redhat.com> <52740D59.50104@redhat.com> <5284FF25.7020401@redhat.com> <20131114170553.GD27813@tucnak.zalov.cz> <52850AB6.2070408@redhat.com> <20131114180147.GE27813@tucnak.zalov.cz> <5285790E.9050000@redhat.com> <20131115073757.GA892@tucnak.redhat.com> <52863CB4.50900@redhat.com> <528695CD.5080705@redhat.com> User-Agent: Notmuch/0.9-101-g81dad07 (http://notmuchmail.org) Emacs/23.4.1 (i486-pc-linux-gnu) Date: Fri, 21 Feb 2014 10:20:38 +0100 Message-ID: <87ppmgsty1.fsf@kepler.schwinge.homeip.net> MIME-Version: 1.0 Hi! On Fri, 15 Nov 2013 14:44:45 -0700, Aldy Hernandez wrote: > Attached is the final version of the patch I have committed to trunk. > --- a/gcc/gimple-pretty-print.c > +++ b/gcc/gimple-pretty-print.c > @@ -1118,6 +1118,8 @@ dump_gimple_omp_for (pretty_printer *buffer, gimple gs, int spc, int flags) > case GF_OMP_FOR_KIND_SIMD: > kind = " simd"; > break; > + case GF_OMP_FOR_KIND_CILKSIMD: > + kind = " cilksimd"; > case GF_OMP_FOR_KIND_DISTRIBUTE: > kind = " distribute"; > break; Fixed (untested, but obvious) in r207987: commit b12563e00026b48b817fd3532fc3df2db2a0f460 Author: tschwinge Date: Fri Feb 21 09:18:15 2014 +0000 Correct TDF_RAW pretty-printing of GIMPLE_OMP_FOR's GF_OMP_FOR_KIND_CILKSIMD. gcc/ * gimple-pretty-print.c (dump_gimple_omp_for) [flags & TDF_RAW] : Add missing break statement. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@207987 138bc75d-0d04-0410-961f-82ee72b054a4 Grüße, Thomas diff --git gcc/ChangeLog gcc/ChangeLog index 67299af..cc9031b 100644 --- gcc/ChangeLog +++ gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-02-21 Thomas Schwinge + + * gimple-pretty-print.c (dump_gimple_omp_for) [flags & TDF_RAW] + : Add missing break statement. + 2014-02-21 Nick Clifton * config/stormy16/stormy16.md (pushdqi1): Add mode to post_inc. diff --git gcc/gimple-pretty-print.c gcc/gimple-pretty-print.c index 2d1e1c7..741cd92 100644 --- gcc/gimple-pretty-print.c +++ gcc/gimple-pretty-print.c @@ -1121,6 +1121,7 @@ dump_gimple_omp_for (pretty_printer *buffer, gimple gs, int spc, int flags) break; case GF_OMP_FOR_KIND_CILKSIMD: kind = " cilksimd"; + break; case GF_OMP_FOR_KIND_DISTRIBUTE: kind = " distribute"; break;