projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b9ec521
)
target/xtensa: don't announce exit simcall
author
Max Filippov
<jcmvbkbc@gmail.com>
Fri, 22 Mar 2019 19:42:51 +0000
(12:42 -0700)
committer
Max Filippov
<jcmvbkbc@gmail.com>
Sat, 23 Mar 2019 21:41:48 +0000
(14:41 -0700)
Don't announce that exit simcall has been invoked: this is just noise.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
target/xtensa/xtensa-semi.c
patch
|
blob
|
history
diff --git
a/target/xtensa/xtensa-semi.c
b/target/xtensa/xtensa-semi.c
index 2f762162768ce295ac980798f5b731e12d5e2482..5f5ce4f344c678a70e4d3c0875499d59727c9757 100644
(file)
--- a/
target/xtensa/xtensa-semi.c
+++ b/
target/xtensa/xtensa-semi.c
@@
-202,7
+202,6
@@
void HELPER(simcall)(CPUXtensaState *env)
switch (regs[2]) {
case TARGET_SYS_exit:
- qemu_log("exit(%d) simcall\n", regs[3]);
exit(regs[3]);
break;