From patchwork Tue Jan 28 20:36:09 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Hubicka X-Patchwork-Id: 1230647 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-518443-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ucw.cz Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.a=rsa-sha1 header.s=default header.b=ATOr8DxY; dkim-atps=neutral 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 486dgS1hYBz9sNT for ; Wed, 29 Jan 2020 07:36:19 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=gkN3MzskGAIMUBxQ9oDT3WcsCMdwmS7XlGmsR8wbMrlpf9fFIPH6d ySNDGNGZ1hp3czpvo4+QgLYB/P9jqaOQq8px4KfD0l6OgVorebATvevtiMbyI8NN wGWuho7BYrbllBMMZ3Hw+KUGRunw3UQbJDPfqggUo8+3RDgSrvse5w= 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:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=wOFN05xtpkkwGTKBG8iy6gTT1Zc=; b=ATOr8DxYPOr3HNR6Dcfh rdw+wpLvV1x0VDTEtKOu9qW++A4eleJgnPvYmzdJUDi+Vynhp9flTdQmnIAGMBc0 zAzuh8dkZaRAkSZSdko2/cyKSJ89JWQtSUUtUdqU/XXfcIFiDzaAdUawmsGFQymg r4ohSkV5OG51gUK6vyMQT5U= Received: (qmail 116606 invoked by alias); 28 Jan 2020 20:36:13 -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 116595 invoked by uid 89); 28 Jan 2020 20:36:12 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-18.2 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3 autolearn=ham version=3.3.1 spammy=corrupted X-HELO: nikam.ms.mff.cuni.cz Received: from nikam.ms.mff.cuni.cz (HELO nikam.ms.mff.cuni.cz) (195.113.20.16) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 28 Jan 2020 20:36:11 +0000 Received: by nikam.ms.mff.cuni.cz (Postfix, from userid 16202) id 1080B2804B4; Tue, 28 Jan 2020 21:36:09 +0100 (CET) Date: Tue, 28 Jan 2020 21:36:09 +0100 From: Jan Hubicka To: gcc-patches@gcc.gnu.org Subject: diagnostics: make error message lowercase. Message-ID: <20200128203608.GE55295@kam.mff.cuni.cz> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) Hi, I comitted this ias obvious. I also wonder if the next error should be info or should be part of the first error message. * coverage.c (read_counts_file): Make error message lowercase. diff --git a/gcc/coverage.c b/gcc/coverage.c index 5e961b26f66..f29ff640c43 100644 --- a/gcc/coverage.c +++ b/gcc/coverage.c @@ -265,7 +265,7 @@ read_counts_file (void) else if (entry->lineno_checksum != lineno_checksum || entry->cfg_checksum != cfg_checksum) { - error ("Profile data for function %u is corrupted", fn_ident); + error ("profile data for function %u is corrupted", fn_ident); error ("checksum is (%x,%x) instead of (%x,%x)", entry->lineno_checksum, entry->cfg_checksum, lineno_checksum, cfg_checksum);