target-m68k: Remove custom qemu_assert() function
commit7372c2b926200db295412efbb53f93773b7f1754
authorPeter Maydell <peter.maydell@linaro.org>
Wed, 12 Mar 2014 13:24:49 +0000 (12 13:24 +0000)
committerAndreas Färber <afaerber@suse.de>
Thu, 13 Mar 2014 18:20:46 +0000 (13 19:20 +0100)
tree56b927b0c90e1125dd162cbf38367e70c97cfdc5
parent9262685b818512215f0829f0dc95c2363898a1ad
target-m68k: Remove custom qemu_assert() function

Remove the custom qemu_assert() function defined by target-m68k/translate.c
in favour of either using glib g_assert_not_reached() (for the genuinely
can't-happen cases) or cpu_abort() (for the "this isn't implemented",
in line with other unimplemented cases in the target).

This has the benefit of silencing some clang warnings about
variables used while uninitialized (which are emitted because
clang can't figure out that qemu_assert(0, something) never
returns.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Andreas Färber <afaerber@suse.de>
target-m68k/translate.c