]> git.proxmox.com Git - qemu.git/commit
ppce500_spin: Replace assert by hw_error (fixes compiler warning)
authorStefan Weil <sw@weilnetz.de>
Sat, 28 Apr 2012 15:52:31 +0000 (17:52 +0200)
committerAlexander Graf <agraf@suse.de>
Tue, 1 May 2012 19:47:01 +0000 (21:47 +0200)
commit5f2c23e61a7cebed05a43dda127c83a21c681420
tree9f66b3b125108d38aad1b43cd75c866a5588800f
parent73f7821baca8ec063ace277539bedeb286663965
ppce500_spin: Replace assert by hw_error (fixes compiler warning)

The default case in function spin_read should never be reached,
therefore the old code used assert(0) to abort QEMU.

This does not work when QEMU is compiled with macro NDEBUG defined.
In this case (and also when the compiler does not know that assert
never returns), there is a compiler warning because of the missing
return value.

Using hw_error allows an improved error message and aborts always.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
[agraf: use __func__]
Signed-off-by: Alexander Graf <agraf@suse.de>
hw/ppce500_spin.c