From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8009 invoked by alias); 14 Oct 2015 14:31:17 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 7988 invoked by uid 55); 14 Oct 2015 14:31:13 -0000 From: "vries at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/67476] Add --param parloops-schedule= Date: Wed, 14 Oct 2015 14:31:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: patch X-Bugzilla-Severity: enhancement X-Bugzilla-Who: vries at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-10/txt/msg01101.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67476 --- Comment #17 from vries at gcc dot gnu.org --- Author: vries Date: Wed Oct 14 14:30:41 2015 New Revision: 228817 URL: https://gcc.gnu.org/viewcvs?rev=228817&root=gcc&view=rev Log: Add param parloops-schedule 2015-10-14 Tom de Vries backport from trunk: 2015-10-13 Tom de Vries PR tree-optimization/67476 * doc/invoke.texi (@item parloops-schedule): New item. * params.def (PARAM_PARLOOPS_SCHEDULE): New DEFPARAMENUM5. * tree-parloops.c: Include params-enum.h. (create_parallel_loop): Handle PARAM_PARLOOPS_SCHEDULE. * testsuite/libgomp.c/autopar-3.c: New test. * testsuite/libgomp.c/autopar-4.c: New test. * testsuite/libgomp.c/autopar-5.c: New test. * testsuite/libgomp.c/autopar-6.c: New test. * testsuite/libgomp.c/autopar-7.c: New test. * testsuite/libgomp.c/autopar-8.c: New test. Added: branches/gomp-4_0-branch/libgomp/testsuite/libgomp.c/autopar-3.c branches/gomp-4_0-branch/libgomp/testsuite/libgomp.c/autopar-4.c branches/gomp-4_0-branch/libgomp/testsuite/libgomp.c/autopar-5.c branches/gomp-4_0-branch/libgomp/testsuite/libgomp.c/autopar-6.c branches/gomp-4_0-branch/libgomp/testsuite/libgomp.c/autopar-7.c branches/gomp-4_0-branch/libgomp/testsuite/libgomp.c/autopar-8.c Modified: branches/gomp-4_0-branch/gcc/ChangeLog.gomp branches/gomp-4_0-branch/gcc/doc/invoke.texi branches/gomp-4_0-branch/gcc/params.def branches/gomp-4_0-branch/gcc/tree-parloops.c branches/gomp-4_0-branch/libgomp/ChangeLog.gomp