projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a50d52b
)
target/avr: Mark some helpers noreturn
author
Richard Henderson
<richard.henderson@linaro.org>
Sun, 20 Jun 2021 23:03:06 +0000
(16:03 -0700)
committer
Richard Henderson
<richard.henderson@linaro.org>
Fri, 9 Jul 2021 16:42:28 +0000
(09:42 -0700)
All of these helpers end with cpu_loop_exit.
Reviewed-by: Michael Rolnik <mrolnik@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
target/avr/helper.h
patch
|
blob
|
history
diff --git
a/target/avr/helper.h
b/target/avr/helper.h
index 8e1ae7fda033e8f6a8b3c1c26608996d68584593..4d02e648fae54c5957ec92f842851cf6ccdad88b 100644
(file)
--- a/
target/avr/helper.h
+++ b/
target/avr/helper.h
@@
-19,10
+19,10
@@
*/
DEF_HELPER_1(wdr, void, env)
-DEF_HELPER_1(debug,
void
, env)
-DEF_HELPER_1(break,
void
, env)
-DEF_HELPER_1(sleep,
void
, env)
-DEF_HELPER_1(unsupported,
void
, env)
+DEF_HELPER_1(debug,
noreturn
, env)
+DEF_HELPER_1(break,
noreturn
, env)
+DEF_HELPER_1(sleep,
noreturn
, env)
+DEF_HELPER_1(unsupported,
noreturn
, env)
DEF_HELPER_3(outb, void, env, i32, i32)
DEF_HELPER_2(inb, tl, env, i32)
DEF_HELPER_3(fullwr, void, env, i32, i32)