[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 01/25] target/arm: Mark exception helpers as noreturn
From: |
Richard Henderson |
Subject: |
[PATCH v2 01/25] target/arm: Mark exception helpers as noreturn |
Date: |
Mon, 6 Jun 2022 19:47:10 -0700 |
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/helper.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/target/arm/helper.h b/target/arm/helper.h
index b1334e0c42..5161cdf73d 100644
--- a/target/arm/helper.h
+++ b/target/arm/helper.h
@@ -44,9 +44,9 @@ DEF_HELPER_FLAGS_2(usad8, TCG_CALL_NO_RWG_SE, i32, i32, i32)
DEF_HELPER_FLAGS_3(sel_flags, TCG_CALL_NO_RWG_SE,
i32, i32, i32, i32)
-DEF_HELPER_2(exception_internal, void, env, i32)
-DEF_HELPER_4(exception_with_syndrome, void, env, i32, i32, i32)
-DEF_HELPER_2(exception_bkpt_insn, void, env, i32)
+DEF_HELPER_2(exception_internal, noreturn, env, i32)
+DEF_HELPER_4(exception_with_syndrome, noreturn, env, i32, i32, i32)
+DEF_HELPER_2(exception_bkpt_insn, noreturn, env, i32)
DEF_HELPER_2(exception_pc_alignment, noreturn, env, tl)
DEF_HELPER_1(setend, void, env)
DEF_HELPER_2(wfi, void, env, i32)
--
2.34.1
- [PATCH v2 00/25] target/arm: tidy exception routing, Richard Henderson, 2022/06/06
- [PATCH v2 02/25] target/arm: Add coproc parameter to syn_fp_access_trap, Richard Henderson, 2022/06/06
- [PATCH v2 01/25] target/arm: Mark exception helpers as noreturn,
Richard Henderson <=
- [PATCH v2 04/25] target/arm: Move exception_target_el out of line, Richard Henderson, 2022/06/06
- [PATCH v2 05/25] target/arm: Move arm_singlestep_active out of line, Richard Henderson, 2022/06/06
- [PATCH v2 07/25] target/arm: Use is_a64 in arm_generate_debug_exceptions, Richard Henderson, 2022/06/06
- [PATCH v2 03/25] target/arm: Move fp access syndrome adjust out of raise_exception, Richard Henderson, 2022/06/06
- [PATCH v2 06/25] target/arm: Move arm_generate_debug_exceptions out of line, Richard Henderson, 2022/06/06
- [PATCH v2 08/25] target/arm: Move exception_bkpt_insn to debug_helper.c, Richard Henderson, 2022/06/06