From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x32c.google.com (mail-wm1-x32c.google.com [IPv6:2a00:1450:4864:20::32c]) by sourceware.org (Postfix) with ESMTPS id 9E1F33858D32 for ; Sun, 29 Jan 2023 11:34:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 9E1F33858D32 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-wm1-x32c.google.com with SMTP id bg26so424744wmb.0 for ; Sun, 29 Jan 2023 03:34:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:mime-version:reply-to:message-id:date :subject:cc:to:from:from:to:cc:subject:date:message-id:reply-to; bh=JTlB4l4ZHHzxzIYJOJrJhPs1tKWEi2Eir3BdxSRHlGo=; b=YKz5t3GOtaJIPJzVdfIH8+jDykNP3sbCBHIQzvOeeHsaqVeyWZkpHhEEuWuaV46+0b KYymVUtbUM6J5NUCorlvsNVB15N4LBV/d/Iux9kLumzTvqIpuKBbOTg5ALoLcepWh2Sd dAJ9EwNVVRrqJv1YWdVbcZ75Lrcaxu9J+SLThE0pqjTQDGwhcMzAMBRJCLkirBxOfMbv OuIXQJIYPaXj1Ofiq5ovFebpld++XFnXBIXYQiO6oadVzUWAH+d0rLhVC5xOx3gKkLaw Rt19USzvPZGP3wXHLTXGaIPepADI2h+hbdSDyJ/43IYyLhlSogtpRs/24C2pUG2dfpAr qKvQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:reply-to:message-id:date :subject:cc:to:from:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=JTlB4l4ZHHzxzIYJOJrJhPs1tKWEi2Eir3BdxSRHlGo=; b=fa4DuO8PIYdZjMRqwez8kxEGhLhO06e1wH2sC3rlozsS1xrTDL44DQjN6VkB2dmj79 tEuKZkd4nvEa7xVlkFoCA5qumsRH9AMyoXYQMd+UNHaZ22UYI8d5pMnsIUf1VZ2lIntd vdlaR7eooXQzO04Ay2Kpd3ZtOVWgToiO7uwe+n0zEHBAHljfz0cVt1j26zW8QSiwSpPU pD5mw1NQjtekDUaYKQdKFON6Ho82uNCC/xKLuLVrbd2S/a1So/J7v5kGuQfWyXezULxD sMymYp06fHZ2951t1uNeEvvhphQW8RYEG/htwBI1qFHYn+yTguyeEfURIEkqxL5mM8tM W15g== X-Gm-Message-State: AFqh2konM174SNwNMeNC9Y5jDBBJD8Yrif2EKioG9RDTPO6N+hE7rdHW h0VwSroLIdmogywa4fPqiNnwBV4rNe4= X-Google-Smtp-Source: AMrXdXuqUKzTwRev8msJSL4rpTXMqWKXYQ2gSTAdsoRo6EoPCeaGDSjOiIEttCv7lmv4xymt1jO9jA== X-Received: by 2002:a05:600c:3d16:b0:3cf:8b22:76b3 with SMTP id bh22-20020a05600c3d1600b003cf8b2276b3mr43848225wmb.0.1674992092349; Sun, 29 Jan 2023 03:34:52 -0800 (PST) Received: from localhost.localdomain (host81-138-1-83.in-addr.btopenworld.com. [81.138.1.83]) by smtp.gmail.com with ESMTPSA id n5-20020a5d6b85000000b002be2279f100sm778752wrx.96.2023.01.29.03.34.51 (version=TLS1_3 cipher=TLS_CHACHA20_POLY1305_SHA256 bits=256/256); Sun, 29 Jan 2023 03:34:51 -0800 (PST) From: Iain Sandoe X-Google-Original-From: Iain Sandoe To: gcc-patches@gcc.gnu.org Cc: joseph@codesourcery.com Subject: [PATCH] driver, toplevel: Avoid emitting the version information twice. Date: Sun, 29 Jan 2023 11:34:51 +0000 Message-Id: <20230129113451.24516-1-iain@sandoe.co.uk> X-Mailer: git-send-email 2.37.1 (Apple Git-137.1) Reply-To: iain@sandoe.co.uk MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-8.3 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Technically, this is seems to be a regression somewhere between 4.2 and 4.6 but, it seems, not enough for anyone to care too much. Tested on various Darwin versions and x86_64, powerpc64 linux, OK for trunk {now,stage1}? thanks, Iain --- 8< --- For a regular compile job, with -v we emit the GCC version information twice - once from main() and once from process_options(). We do not need to emit the former unless the compiler will exit before calling process_options(), which is controlled by the 'exit_after_options' flag. Gating the first output on that flag resolves this. Signed-off-by: Iain Sandoe gcc/ChangeLog: * toplev.cc (toplev::main): Only print the version information from the toplevel main() if we will exit before processing options. --- gcc/toplev.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/toplev.cc b/gcc/toplev.cc index 42937f0ba00..8beaa2ab64d 100644 --- a/gcc/toplev.cc +++ b/gcc/toplev.cc @@ -2252,7 +2252,7 @@ toplev::main (int argc, char **argv) initialize_plugins (); - if (version_flag) + if (version_flag && exit_after_options) print_version (stderr, "", true); if (help_flag) -- 2.37.1 (Apple Git-137.1)