From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id sDWcKIwXUWOOsA4AWB0awg (envelope-from ) for ; Thu, 20 Oct 2022 05:40:28 -0400 Received: by simark.ca (Postfix, from userid 112) id A25411E112; Thu, 20 Oct 2022 05:40:28 -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=GcxzJcU9; 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 5782A1E0D5 for ; Thu, 20 Oct 2022 05:40:28 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 79E153839DDD for ; Thu, 20 Oct 2022 09:39:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 79E153839DDD DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666258787; bh=pOnfs/8cdrnY7ljoZDuPEQKtU2C1FTGwUTNyhn+vdYQ=; 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=GcxzJcU9whyFoqD8bwazQmDHqv0FKI24r+3wqZqhARK719qFtS8Mu8XSEvCEqIlb+ 7GRgw0BMw1sNg46v+5lZP4ZEYTFwHrmqe+wMFCN0PWqqpnvv9bWEoj8OHqD8VtHL/R flTVZSko6AcgGMkHClqpItau76ZXWVmMdpHXm7Q4= Received: from mail-sender-0.a4lg.com (mail-sender.a4lg.com [153.120.152.154]) by sourceware.org (Postfix) with ESMTPS id 9721D3829BA1 for ; Thu, 20 Oct 2022 09:37:18 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 9721D3829BA1 Received: from [127.0.0.1] (localhost [127.0.0.1]) by mail-sender-0.a4lg.com (Postfix) with ESMTPSA id ECDED300089; Thu, 20 Oct 2022 09:37:16 +0000 (UTC) To: Tsukasa OI , Andrew Burgess , Mike Frysinger , Nick Clifton Subject: [PATCH 25/40] sim/mn10300: Add an explicit cast Date: Thu, 20 Oct 2022 09:32:30 +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" Clang generates a warning if there is an enum value with a mismatching type without an explicit cast ("-Wenum-conversion"). On the default configuration, it causes a build failure (unless "--disable-werror" is specified). This commit adds an explicit cast. --- sim/mn10300/op_utils.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sim/mn10300/op_utils.c b/sim/mn10300/op_utils.c index 2fccf2da207..34b1b8e3951 100644 --- a/sim/mn10300/op_utils.c +++ b/sim/mn10300/op_utils.c @@ -152,8 +152,9 @@ do_syscall (SIM_DESC sd) if (cb_target_to_host_syscall (STATE_CALLBACK (sd), func) == CB_SYS_exit) { /* EXIT - caller can look in parm1 to work out the reason */ - sim_engine_halt (simulator, STATE_CPU (simulator, 0), NULL, PC, - (parm1 == 0xdead ? SIM_SIGABRT : sim_exited), parm1); + sim_engine_halt ( + simulator, STATE_CPU (simulator, 0), NULL, PC, + (parm1 == 0xdead ? (enum sim_stop) SIM_SIGABRT : sim_exited), parm1); } else { -- 2.34.1