This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 2445de173d444dcdec295afae28b6a983e6bd674 Author: Abdelatif Guettouche <abdelatif.guettou...@espressif.com> AuthorDate: Fri Mar 11 19:13:49 2022 +0100 xtensa_dumpstate.c: Don't dump temporary registers. Signed-off-by: Abdelatif Guettouche <abdelatif.guettou...@espressif.com> --- arch/xtensa/src/common/xtensa_dumpstate.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/arch/xtensa/src/common/xtensa_dumpstate.c b/arch/xtensa/src/common/xtensa_dumpstate.c index 7bd2ed9..f5869f5 100644 --- a/arch/xtensa/src/common/xtensa_dumpstate.c +++ b/arch/xtensa/src/common/xtensa_dumpstate.c @@ -256,10 +256,6 @@ static inline void xtensa_registerdump(uintptr_t *regs) (unsigned long)regs[REG_LBEG], (unsigned long)regs[REG_LEND], (unsigned long)regs[REG_LCOUNT]); #endif -#ifndef __XTENSA_CALL0_ABI__ - _alert(" TMP0: %08lx TMP1: %08lx\n", - (unsigned long)regs[REG_TMP0], (unsigned long)regs[REG_TMP1]); -#endif } /****************************************************************************