diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2024-09-12 00:38:47 -0700 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-09-17 10:50:39 +0200 |
commit | 446ef11261499230e0439b147a874404dfbbe786 (patch) | |
tree | 3a77e0e0d6bb04c476ab843f07f03a4f3446efe7 /include/hw/s390x | |
parent | 6ceefb931fac9d67dd4d8742d406fab63a3c00d1 (diff) |
include/hw/s390x: replace assert(false) with g_assert_not_reached()
This patch is part of a series that moves towards a consistent use of
g_assert_not_reached() rather than an ad hoc mix of different
assertion mechanisms.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Eric Farman <farman@linux.ibm.com>
Message-ID: <20240912073921.453203-15-pierrick.bouvier@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/hw/s390x')
-rw-r--r-- | include/hw/s390x/cpu-topology.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/s390x/cpu-topology.h b/include/hw/s390x/cpu-topology.h index a11b1baa77..9283c948e3 100644 --- a/include/hw/s390x/cpu-topology.h +++ b/include/hw/s390x/cpu-topology.h @@ -57,7 +57,7 @@ static inline void s390_topology_setup_cpu(MachineState *ms, static inline void s390_topology_reset(void) { /* Unreachable, CPU topology not implemented for TCG */ - assert(false); + g_assert_not_reached(); } #endif |