From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx.kolabnow.com (mx.kolabnow.com [212.103.80.155]) by sourceware.org (Postfix) with ESMTPS id 8839E385ED41 for ; Wed, 4 Oct 2023 12:40:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 8839E385ED41 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=lambda.is Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=lambda.is Received: from localhost (unknown [127.0.0.1]) by mx.kolabnow.com (Postfix) with ESMTP id B681920AB2EC; Wed, 4 Oct 2023 14:40:40 +0200 (CEST) Authentication-Results: ext-mx-out011.mykolab.com (amavis); dkim=pass (4096-bit key) reason="pass (just generated, assumed good)" header.d=kolabnow.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kolabnow.com; h= content-transfer-encoding:content-type:content-type:mime-version :references:in-reply-to:message-id:date:date:subject:subject :from:from:received:received:received; s=dkim20160331; t= 1696423240; x=1698237641; bh=h0FXBfnYpPs0RgAN3XW9RJpSFrofJCFnpzl KgxoNWWA=; b=3PwRuB252U1WhIwhEj4GNaBJjwidg0U0h3zo2mPyFu49To4cBCI wQOFCp0RYo4X4ax2Hi22dxrFlqwMV1PgUCOlC92/p+wGcgOM8y3GV1ymrMkA8YiU FdvySsdv4pvC/EXj8UJKRuKDDa9jhifbq5e0M/6Db+b6nQE2MnHuPWrVTT1/dpMH I/8Nhm/TFzfGo6m/D6uHGY8aG701ciTD9zKtT61ZldQ8Lfwt4VLbf0d49g5Y3ebC LfPtnPP6SNR4ICX9PzmYjAoAvsZjasLm1Ge8vt9Sui1DDN1nSDPRJSBEFMOX7Y/m 7ndjJUyFLtuu9mXMwH9qQIo9lx+38zOXLJOCT0WghP/RaWotRoZ6QSiuu03cCpcT 7G7iN7vbrLe/9YdfRpmjx/ozY3LAd1edwN6ShiWrTCFf1JyAIfwJ4QKPOZh4tenu W6wj+mFa6SWzg5jgZCuCHjK9oWlOFPazickX4mXuSY2ffaL3+MoUPS+NWq7Yxf/R tSk1RHQ5RF9R/OyIgFXionkYOqXwDfPfa00T+w1MyGncd29wvI9v3cJPdM+GCWEB 2jq0pg0/o19WhXytbCHHtAheH6BSUJ/YrX2fD7xKnvOl669uB8QlJWwz6nzG+dd8 y0F8QqbFRzn+aZ9uJpdOS9to14MYISslYLxQdfqZTjPDeT0eDdk1Tc7Y= X-Virus-Scanned: amavis at mykolab.com X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-8.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,GIT_PATCH_0,SPAM_BODY,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out011.mykolab.com [127.0.0.1]) (amavis, port 10024) with ESMTP id AEh_i0BzOC_Q; Wed, 4 Oct 2023 14:40:40 +0200 (CEST) Received: from int-mx009.mykolab.com (unknown [10.9.13.9]) by mx.kolabnow.com (Postfix) with ESMTPS id 294B720AB2E8; Wed, 4 Oct 2023 14:40:40 +0200 (CEST) Received: from ext-subm010.mykolab.com (unknown [10.9.6.10]) by int-mx009.mykolab.com (Postfix) with ESMTPS id 066C720D6AE9; Wed, 4 Oct 2023 14:40:40 +0200 (CEST) From: =?UTF-8?q?J=C3=B8rgen=20Kvalsvik?= To: gcc-patches@gcc.gnu.org Cc: mliska@suse.cz, jh@suse.cz, =?UTF-8?q?J=C3=B8rgen=20Kvalsvik?= Subject: [PATCH 08/22] Describe output_conditions Date: Wed, 4 Oct 2023 21:39:08 +0900 Message-Id: <20231004123921.634024-9-j@lambda.is> In-Reply-To: <20231004123921.634024-1-j@lambda.is> References: <20231004123921.634024-1-j@lambda.is> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: From: Jørgen Kvalsvik --- gcc/gcov.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcc/gcov.cc b/gcc/gcov.cc index 95e0a11bc08..62eac76a971 100644 --- a/gcc/gcov.cc +++ b/gcc/gcov.cc @@ -3045,6 +3045,10 @@ accumulate_line_counts (source_info *src) } } +/* Output information about the conditions in block BINFO. The output includes + * a summary (n/m outcomes covered) and a list of the missing (uncovered) + * outcomes. */ + static void output_conditions (FILE *gcov_file, const block_info *binfo) { -- 2.30.2