From patchwork Tue May 30 07:10:58 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: 768415 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 3wcPsd6GjPz9s0g for ; Tue, 30 May 2017 17:11:16 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="pmWqHW+7"; 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=LYvBcWXg4rCTNMUa/4TPNDzHRGCFye7T+TnFmBjmx095nPpmvV L7BdqXQQZ99ZZssb4Gzl8cNaEeuBh8Zy+Cy4nOWRmt8Evymr/UK10ftnnP9r1AmC sTt7NpHo/zi+oIOfqRN5fzauD7E1ZxqMg1TBVgTbb+6gCzTzszdpJJsRE= 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=/FM/uLKeSYUXt98SbVCZfrxDr2E=; b=pmWqHW+7WSbkGXPaFtgl wlXCvHg3HyQoepX11Jt0dsU+EeX520m1irKpkmv3jR4HBONj822GBxpJJdfegRNf AdLzqTvfWloo3SFvEW5yeyVqE1HEfOtn5W6S/3dSZ+smyJ2PeYk/MqRDgOQMtCaE fy4Wk8vdjEffzIKwtkgCTD0= Received: (qmail 70780 invoked by alias); 30 May 2017 07:10:59 -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 69592 invoked by uid 89); 30 May 2017 07:10:59 -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=Hx-languages-length:1545 X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 30 May 2017 07:10:57 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 7C837ABBD for ; Tue, 30 May 2017 07:10:59 +0000 (UTC) To: GCC Patches From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [OBVIOUS][PATCH] Fix coding style in predict.def. Message-ID: <58698a73-024e-0d16-9366-ae0ff8a64db9@suse.cz> Date: Tue, 30 May 2017 09:10:58 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 X-IsSubscribed: yes Hello. I prepared patch in order to make parsing of the file easier for analyze_brprob.py. Martin From a3f87f718ef82026af070df06ce83d72a2f6661d Mon Sep 17 00:00:00 2001 From: marxin Date: Mon, 29 May 2017 15:00:42 +0200 Subject: [PATCH 1/2] Fix coding style. gcc/ChangeLog: 2017-05-30 Martin Liska * predict.def: Fix GNU coding style. --- gcc/predict.def | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gcc/predict.def b/gcc/predict.def index e96be12be4a..fcda6c48f11 100644 --- a/gcc/predict.def +++ b/gcc/predict.def @@ -194,12 +194,13 @@ DEF_PREDICTOR (PRED_FORTRAN_OVERFLOW, "Fortran overflow", PROB_ALWAYS, of memory. This predictor only occurs when the user explicitly asked for a return status. By default, the code aborts, which is handled via PRED_NORETURN. */ -DEF_PREDICTOR (PRED_FORTRAN_FAIL_ALLOC, "Fortran fail alloc", PROB_VERY_LIKELY, 0) +DEF_PREDICTOR (PRED_FORTRAN_FAIL_ALLOC, "Fortran fail alloc", + PROB_VERY_LIKELY, 0) /* Predictor is used for an allocation of an already allocated memory or deallocating an already deallocated allocatable. */ -DEF_PREDICTOR (PRED_FORTRAN_REALLOC, \ - "Fortran repeated allocation/deallocation", PROB_LIKELY, 0) +DEF_PREDICTOR (PRED_FORTRAN_REALLOC, "Fortran repeated allocation/deallocation", + PROB_LIKELY, 0) /* Branch leading to an I/O failure status are unlikely. This predictor is used for I/O failures such as for invalid unit numbers. This predictor -- 2.12.2