From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 3OL7HosUMGMXrD8AWB0awg (envelope-from ) for ; Sun, 25 Sep 2022 04:42:51 -0400 Received: by simark.ca (Postfix, from userid 112) id 718DB1E112; Sun, 25 Sep 2022 04:42:51 -0400 (EDT) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=vhpUP8k9; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 45C371E0D3 for ; Sun, 25 Sep 2022 04:42:47 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 3A57D38582BA for ; Sun, 25 Sep 2022 08:42:44 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3A57D38582BA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1664095364; bh=g0j8n689ZGQk67vTEnq7e6XlisQFAg0L5a5DGBd8lb8=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=vhpUP8k96rRay4EwO6V01aJxmmHwSTI4LjjpTK1PHDHmZSaoeaXjZr2CvN6ce9Q48 nfqVV34QWYgFQ+AR1TtaeCZOt+AxRLLTCq46E29AXOVaQSkeqDvuTFAGJE1FSjnUC3 2RGNW6FUTzAvS21HMSeYfSX6S2ibIHWzxJmGMZIM= Received: from mail-sender-0.a4lg.com (mail-sender.a4lg.com [153.120.152.154]) by sourceware.org (Postfix) with ESMTPS id D69CF385840C for ; Sun, 25 Sep 2022 08:42:21 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D69CF385840C Received: from [127.0.0.1] (localhost [127.0.0.1]) by mail-sender-0.a4lg.com (Postfix) with ESMTPSA id 1F89E300089; Sun, 25 Sep 2022 08:42:20 +0000 (UTC) To: Tsukasa OI , Andrew Burgess , Mike Frysinger Subject: [PATCH v2 0/5] sim: Suppress warnings if built with Clang Date: Sun, 25 Sep 2022 08:42:01 +0000 Message-Id: In-Reply-To: References: Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Tsukasa OI via Gdb-patches Reply-To: Tsukasa OI Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" Hello, This is the version 2 patchset to suppress Clang compiler warnings (causes a build failure due to default -Werror). [Background] When we build Binutils and GDB with Clang, it causes a build failure due to warnings generated by Clang and the default -Werror configuration. I finally managed to make ALL ARCHITECTURE ENABLED Binutils and GDB -Werror-free on Clang 15.0.0 (note that this does not necessarily mean warning-free) and this patchset is a part of it (common simulator part except the printf-like functions). Full Clang 15.0.0 -Werror-free branch is available at: [About this Patchset] This patchset contains four five fixes to the files under sim{,/common}. Each contains minor fixes to suppress Clang / GCC warnings. Each change is detailed in the each patch. [Changes: v1 -> v2] - Commit messages are improved - PATCH v1 1/4 is Moved to another patchset - PATCH v1 2-4/4 -> PATCH v2 1-3/5 - New: Check known getopt definition on sim (PATCH v2 4/5) This test is already performed on binutils, gas, gprof and ld and this commit does the same to sim. - New: Initialize pbb_br_* by default (PATCH v2 5/5) It did not generate warnings on Clang but GCC creates some warnings (although those are not reported as errors). This is due to uninitialized pbb_br_* variables and this commit fixes the issue by initializing them by a harmless value. Thanks, Tsukasa Tsukasa OI (5): sim: Remove self-assignments sim: Make WITH_{TRACE,PROFILE}-based macros bool sim: Suppress non-literal printf warning sim: Check known getopt definition existence sim: Initialize pbb_br_* by default sim/common/genmloop.sh | 8 ++++---- sim/common/hw-tree.c | 2 -- sim/common/sim-hw.c | 3 +++ sim/common/sim-profile.h | 12 ++++++------ sim/common/sim-trace.h | 4 ++-- sim/config.h.in | 3 +++ sim/configure | 32 ++++++++++++++++++++++++++++++++ sim/configure.ac | 10 ++++++++++ 8 files changed, 60 insertions(+), 14 deletions(-) base-commit: 58d69206b8173b9d027a6c65f56cdaf045ae6e64 -- 2.34.1