diff options
author | Richard Henderson | 2021-06-20 05:52:04 +0200 |
---|---|---|
committer | Richard Henderson | 2021-06-29 19:04:56 +0200 |
commit | 71fc4615c644fcd9c30141652af0679a644aa636 (patch) | |
tree | 54a5807c532eb1c829d7f2b6f0e7c0265621a151 /target | |
parent | target/cris: Convert to TranslatorOps (diff) | |
download | qemu-71fc4615c644fcd9c30141652af0679a644aa636.tar.gz qemu-71fc4615c644fcd9c30141652af0679a644aa636.tar.xz qemu-71fc4615c644fcd9c30141652af0679a644aa636.zip |
target/cris: Mark helper_raise_exception noreturn
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Tested-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/cris/helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/cris/helper.h b/target/cris/helper.h index 20d21c4358..3abf608682 100644 --- a/target/cris/helper.h +++ b/target/cris/helper.h @@ -1,4 +1,4 @@ -DEF_HELPER_2(raise_exception, void, env, i32) +DEF_HELPER_2(raise_exception, noreturn, env, i32) DEF_HELPER_2(tlb_flush_pid, void, env, i32) DEF_HELPER_2(spc_write, void, env, i32) DEF_HELPER_1(rfe, void, env) |