no1wudi commented on a change in pull request #5192: URL: https://github.com/apache/incubator-nuttx/pull/5192#discussion_r780624976
########## File path: arch/risc-v/include/common/irq.h ########## @@ -121,7 +121,13 @@ #define INT_XCPT_REGS 33 #endif -#define INT_XCPT_SIZE (8 * INT_XCPT_REGS) +#ifdef CONFIG_ARCH_RV32 +#define INT_REG_SIZE 4 +#else +#define INT_REG_SIZE 8 +#endif Review comment: Can't do this since uintptr_t is invalid in assembly. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org