Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 1 | scno = mips_REG_V0; |
2 | |||||
3 | if (!SCNO_IN_RANGE(scno)) { | ||||
4 | if (mips_REG_A3 == 0 || mips_REG_A3 == (uint64_t) -1) { | ||||
5 | if (debug_flag) | ||||
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame] | 6 | error_msg("stray syscall exit: v0 = %ld", scno); |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 7 | return 0; |
8 | } | ||||
9 | } |