From patchwork Fri Feb 17 14:17:27 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Martin_Li=C5=A1ka?= X-Patchwork-Id: 729189 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 3vPw8w3b4Fz9s85 for ; Sat, 18 Feb 2017 01:17:50 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="V9/Doep/"; 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:to :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=T61F8b1O1JmHP0MmrGNmyDKHYMzpRsV4b23QjQChJltlhS0Uyu BSCZ1LAfztciW9lQhpSaTyuwJyVrNQoEOIrwKAWxu3cko6V2h7XzLHRYTqkGyVux XV/+G34zG9pB9dZutXAq1EYBz2ybgASaI+pRhsELBp9XBbSBkQYeN8OcQ= 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:to :from:subject:message-id:date:mime-version:content-type; s= default; bh=UTKfD3VDBdGQTLSfxSsfB8FtHc4=; b=V9/Doep/5mVPG/icrLX5 S4HrFeP3ohtT7SZY0QG1QCQD/vmJwNYjgOwK3L1NHbW1i15fwuR/Ipf718hUNan1 rDLRgej8YMRahYosvSXod1NgJhrKO6Inwjy6wQ2iVEs6aOWldVcdTPbO2sEGNv9S CcIUWOOlXazk1McrGclozpM= Received: (qmail 46640 invoked by alias); 17 Feb 2017 14:17:41 -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 46611 invoked by uid 89); 17 Feb 2017 14:17:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx2.suse.de Received: from mx2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 17 Feb 2017 14:17:30 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id A006FAAB2; Fri, 17 Feb 2017 14:17:28 +0000 (UTC) To: GCC Patches , Richard Biener From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [PATCH] Increase minimum for a param (PR rtl-optimization/79577). Message-ID: Date: Fri, 17 Feb 2017 15:17:27 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 X-IsSubscribed: yes Hello. Increasing minimum of param fixes the issue. I guess 0 as value does not makes any real sense. Ready for trunk? Thanks, Martin From 84f39f731373a8b2703569ac23080b8278539ea9 Mon Sep 17 00:00:00 2001 From: marxin Date: Fri, 17 Feb 2017 15:03:22 +0100 Subject: [PATCH] Increase minimum for a param (PR rtl-optimization/79577). gcc/ChangeLog: 2017-02-17 Martin Liska PR rtl-optimization/79577 * params.def (selsched-max-sched-times): Increase minimum to 1. --- gcc/params.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/params.def b/gcc/params.def index 123e6393ae0..023ca727648 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -657,7 +657,7 @@ DEFPARAM(PARAM_SELSCHED_MAX_LOOKAHEAD, DEFPARAM(PARAM_SELSCHED_MAX_SCHED_TIMES, "selsched-max-sched-times", "Maximum number of times that an insn could be scheduled.", - 2, 0, 0) + 2, 1, 0) DEFPARAM(PARAM_SELSCHED_INSNS_TO_RENAME, "selsched-insns-to-rename", -- 2.11.0