From patchwork Tue Jan 28 20:32:49 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Hubicka X-Patchwork-Id: 1230646 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-518442-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=lkbw9g3l; 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 486dbh2r1kz9sNT for ; Wed, 29 Jan 2020 07:33:01 +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=wb6n2Ty0ZS30I8pSU3yW2JKDbf8b0VCZXUgbCXr3ZeDKWfVnGQxK7 8vRs/sKrEWlaKlKksbxH1761EOsubXBKHAVcpR1FCv1MicZTewmbH3qMEeddEdPD IJoVcFHzYc0POqCbUIdK21tG3KVascsSMobHtMHI4ske2NwuJybxjs= 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=+iNrD2FyvgwfCuGoCHEDHP48nHI=; b=lkbw9g3lAMraFexYBedp 4hvkprFPRNXYrd5zdHq6j9qbSCfu6AtfxkWKacUHVGtRulMDVFk4Pfv43n4A/rt1 o8//iQoF5q8//kPcqZhIpw/KNrD7ymJLwMFqykc64EGQKp0qg+B49z2ouLdcBSXI e/AyIKh/LENaELuPvTruVzs= Received: (qmail 112369 invoked by alias); 28 Jan 2020 20:32:54 -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 112346 invoked by uid 89); 28 Jan 2020 20:32:53 -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=quality 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:32:51 +0000 Received: by nikam.ms.mff.cuni.cz (Postfix, from userid 16202) id 927ED2804B4; Tue, 28 Jan 2020 21:32:49 +0100 (CET) Date: Tue, 28 Jan 2020 21:32:49 +0100 From: Jan Hubicka To: gcc-patches@gcc.gnu.org Subject: profile: fix profile count dumping Message-ID: <20200128203249.GD55295@kam.mff.cuni.cz> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) Hi, this patch fixes dump of quality. Comitted as obvious. * profile-count.h (profile_quality_display_names): Fix ordering. diff --git a/gcc/profile-count.c b/gcc/profile-count.c index 0c792297826..c89914ff8a0 100644 --- a/gcc/profile-count.c +++ b/gcc/profile-count.c @@ -78,9 +78,9 @@ const char *profile_quality_display_names[] = "estimated locally", "estimated locally, globally 0", "estimated locally, globally 0 adjusted", - "adjusted", - "auto FDO", "guessed", + "auto FDO", + "adjusted", "precise" };