From patchwork Tue Jun 21 16:08:43 2016 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: 638764 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 3rYt2T2C9jz9sf9 for ; Wed, 22 Jun 2016 02:09:04 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=kuwBeo9V; 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=E5iANoVN6+IHCUvmaZeD187Wx0cw2ap9J1+D9BVMFjlyVsu/Vo qgnzmNa8qeAa2maTAobZBVcztKqr7TrArORMRaQUYSUhc2X7PjoVGgLBQZozuCwy DNL5N44f16PyWFSKjffg1gd9fli4Y+89P1ZhMCtdq9msByrUx6KU2mIJU= 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=X+o7cexagXofUCtw4q5vZ5gWjgM=; b=kuwBeo9VNo0JbWfdFIgc 5r8lZq2MadJXzZz8c2S7yxsUU6RTtYxngn4Rf9q42OGe/eGvqosj4/hZhJT6Eefu NDtd7CX9pfSP5HRSW/sTgzw0hpVSGMGWZJ3m7188dCg84t20LNihZ+Ug4erAApHt zgoyxbFMjaePM50fvv0TuSM= Received: (qmail 80527 invoked by alias); 21 Jun 2016 16:08:57 -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 80505 invoked by uid 89); 21 Jun 2016 16:08:57 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00, SPF_PASS autolearn=ham version=3.3.2 spammy=SUBJECT, Hx-languages-length:1700 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 (CAMELLIA256-SHA encrypted) ESMTPS; Tue, 21 Jun 2016 16:08:46 +0000 Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 8FA90AC1B for ; Tue, 21 Jun 2016 16:08:43 +0000 (UTC) To: GCC Patches From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [PATCH] [OBVIOUS] s/imposisble/impossible in predict.c Message-ID: <2a06f49c-9f22-d724-77c3-e3c0c8c20cf6@suse.cz> Date: Tue, 21 Jun 2016 18:08:43 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 X-IsSubscribed: yes Hello. I've just installed patch that does $SUBJECT. Thanks, Martin From 8302396974053dd00cd5eaff594dddf2f1ccf80b Mon Sep 17 00:00:00 2001 From: marxin Date: Tue, 21 Jun 2016 18:05:50 +0200 Subject: [PATCH] s/imposisble/impossible in predict.c gcc/ChangeLog: 2016-06-21 Martin Liska * predict.c (force_edge_cold): Replace imposisble with impossible. --- gcc/predict.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/predict.c b/gcc/predict.c index 642bd62..470de8a 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -3507,7 +3507,7 @@ force_edge_cold (edge e, bool impossible) fprintf (dump_file, "Making edge %i->%i %s by redistributing " "probability to other edges.\n", e->src->index, e->dest->index, - impossible ? "imposisble" : "cold"); + impossible ? "impossible" : "cold"); FOR_EACH_EDGE (e2, ei, e->src->succs) if (e2 != e) { @@ -3533,7 +3533,7 @@ force_edge_cold (edge e, bool impossible) int old_frequency = e->src->frequency; if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, "Making bb %i %s.\n", e->src->index, - impossible ? "imposisble" : "cold"); + impossible ? "impossible" : "cold"); e->src->frequency = MIN (e->src->frequency, impossible ? 0 : 1); e->src->count = e->count = RDIV (e->src->count * e->src->frequency, old_frequency); @@ -3542,6 +3542,6 @@ force_edge_cold (edge e, bool impossible) else if (dump_file && (dump_flags & TDF_DETAILS) && maybe_hot_bb_p (cfun, e->src)) fprintf (dump_file, "Giving up on making bb %i %s.\n", e->src->index, - impossible ? "imposisble" : "cold"); + impossible ? "impossible" : "cold"); } } -- 2.8.4