qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Pierrick Bouvier <pierrick.bouvier@linaro.org>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>
Cc: qemu-devel@nongnu.org, Thomas Huth <thuth@redhat.com>,
	Richard Henderson <richard.henderson@linaro.org>
Subject: Re: [PULL 1/5] target/s390x: fix build warning (gcc-12 -fsanitize=thread)
Date: Fri, 16 Aug 2024 10:55:34 -0700	[thread overview]
Message-ID: <55eaeca5-dc4d-4b7a-986a-d49403460dda@linaro.org> (raw)
In-Reply-To: <ddad1d38-2f4d-41b8-a7b5-69bec00ebe02@linaro.org>

On 8/16/24 00:45, Philippe Mathieu-Daudé wrote:
> On 16/8/24 09:22, Thomas Huth wrote:
>> From: Pierrick Bouvier <pierrick.bouvier@linaro.org>
>>
>> Found on debian stable.
>>
>> ../target/s390x/tcg/translate.c: In function ‘get_mem_index’:
>> ../target/s390x/tcg/translate.c:398:1: error: control reaches end of non-void function [-Werror=return-type]
>>     398 | }
>>
>> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
>> Acked-by: Ilya Leoshkevich <iii@linux.ibm.com>
>> Message-ID: <20240814224132.897098-4-pierrick.bouvier@linaro.org>
>> Signed-off-by: Thomas Huth <thuth@redhat.com>
>> ---
>>    target/s390x/tcg/translate.c | 1 -
>>    1 file changed, 1 deletion(-)
>>
>> diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c
>> index c81e035dea..bcfff40b25 100644
>> --- a/target/s390x/tcg/translate.c
>> +++ b/target/s390x/tcg/translate.c
>> @@ -392,7 +392,6 @@ static int get_mem_index(DisasContext *s)
>>            return MMU_HOME_IDX;
>>        default:
>>            g_assert_not_reached();
>> -        break;
> 
> Why aren't the other cases problematic?
> 
> $ git grep -A1 g_assert_not_reached | fgrep -B1 break
> accel/tcg/plugin-gen.c:253:        g_assert_not_reached();
> accel/tcg/plugin-gen.c-254-        break;
> --
> block/ssh.c:476:        g_assert_not_reached();
> block/ssh.c-477-        break;
> --
> fpu/softfloat-parts.c.inc:1375:            g_assert_not_reached();
> fpu/softfloat-parts.c.inc-1376-            break;
> --
> fpu/softfloat-parts.c.inc:1388:            g_assert_not_reached();
> fpu/softfloat-parts.c.inc-1389-            break;
> --
> hw/gpio/nrf51_gpio.c:42:        g_assert_not_reached();
> hw/gpio/nrf51_gpio.c-43-        break;
> --
> hw/misc/imx6_ccm.c:303:        g_assert_not_reached();
> hw/misc/imx6_ccm.c-304-        break;
> --
> hw/misc/mac_via.c:497:                g_assert_not_reached();
> hw/misc/mac_via.c-498-                break;
> --
> hw/misc/mac_via.c:558:            g_assert_not_reached();
> hw/misc/mac_via.c-559-            break;
> --
> hw/pci-host/gt64120.c:691:        g_assert_not_reached();
> hw/pci-host/gt64120.c-692-        break;
> --
> hw/pci-host/gt64120.c:935:        g_assert_not_reached();
> hw/pci-host/gt64120.c-936-        break;
> --
> hw/scsi/virtio-scsi.c:359:        g_assert_not_reached();
> hw/scsi/virtio-scsi.c-360-        break;
> --
> hw/tpm/tpm_spapr.c:208:                g_assert_not_reached();
> hw/tpm/tpm_spapr.c-209-                break;
> --
> target/arm/hyp_gdbstub.c:160:        g_assert_not_reached();
> target/arm/hyp_gdbstub.c-161-        break;
> --
> target/riscv/insn_trans/trans_rvv.c.inc:3174:        g_assert_not_reached();
> target/riscv/insn_trans/trans_rvv.c.inc-3175-        break;
> --
> target/riscv/insn_trans/trans_rvv.c.inc:3259:        g_assert_not_reached();
> target/riscv/insn_trans/trans_rvv.c.inc-3260-        break;
> --
> target/riscv/monitor.c:186:        g_assert_not_reached();
> target/riscv/monitor.c-187-        break;
> --
> target/s390x/tcg/translate.c:394:        g_assert_not_reached();
> target/s390x/tcg/translate.c-395-        break;
> --
> tcg/loongarch64/tcg-target.c.inc:652:        g_assert_not_reached();
> tcg/loongarch64/tcg-target.c.inc-653-        break;
> --
> tests/qtest/migration-helpers.c:78:        g_assert_not_reached();
> tests/qtest/migration-helpers.c-79-        break;
> --
> ui/qemu-pixman.c:51:        g_assert_not_reached();
> ui/qemu-pixman.c-52-        break;
> 

I'll take a look at constructions where code is present after 
g_assert_not_reached() and make a series out of it to clean this.

  parent reply	other threads:[~2024-08-16 17:55 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-16  7:22 [PULL 0/5] Some small tests and s390x fixes Thomas Huth
2024-08-16  7:22 ` [PULL 1/5] target/s390x: fix build warning (gcc-12 -fsanitize=thread) Thomas Huth
2024-08-16  7:45   ` Philippe Mathieu-Daudé
2024-08-16  8:26     ` Thomas Huth
2024-08-16 17:55     ` Pierrick Bouvier [this message]
2024-08-16  7:22 ` [PULL 2/5] meson.build: Check for the availability of __attribute__((gcc_struct)) on MSYS2 Thomas Huth
2024-08-16  7:22 ` [PULL 3/5] tests/avocado: apply proper skipUnless decorator Thomas Huth
2024-08-19 22:31   ` Philippe Mathieu-Daudé
2024-08-20  8:03     ` Thomas Huth
2024-08-20  8:06       ` Thomas Huth
2024-08-16  7:22 ` [PULL 4/5] ci: add gtk-vnc to the deps Thomas Huth
2024-08-16  7:22 ` [PULL 5/5] ci: refresh package lists with lcitool Thomas Huth
2024-08-16 11:50 ` [PULL 0/5] Some small tests and s390x fixes Richard Henderson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55eaeca5-dc4d-4b7a-986a-d49403460dda@linaro.org \
    --to=pierrick.bouvier@linaro.org \
    --cc=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).