aboutsummaryrefslogtreecommitdiff
path: root/tcg/sparc64
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-04-05 12:09:14 -0700
committerRichard Henderson <richard.henderson@linaro.org>2023-04-23 08:17:46 +0100
commit732e89f4c401c3cf175aa84c987a029b9729070b (patch)
tree45f2f1ebb5c17547c51b2cf30703e201b08c10ae /tcg/sparc64
parent1a057554cc2e3ece8ed166f12a9b85cd5ec4cbe1 (diff)
downloadqemu-732e89f4c401c3cf175aa84c987a029b9729070b.zip
qemu-732e89f4c401c3cf175aa84c987a029b9729070b.tar.gz
qemu-732e89f4c401c3cf175aa84c987a029b9729070b.tar.bz2
tcg: Replace tcg_abort with g_assert_not_reached
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/sparc64')
-rw-r--r--tcg/sparc64/tcg-target.c.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/sparc64/tcg-target.c.inc b/tcg/sparc64/tcg-target.c.inc
index 694f2b9..4ee5732 100644
--- a/tcg/sparc64/tcg-target.c.inc
+++ b/tcg/sparc64/tcg-target.c.inc
@@ -1701,7 +1701,7 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc,
case INDEX_op_exit_tb: /* Always emitted via tcg_out_exit_tb. */
case INDEX_op_goto_tb: /* Always emitted via tcg_out_goto_tb. */
default:
- tcg_abort();
+ g_assert_not_reached();
}
}