Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/debug/stacktrace.c

    ra35b458 r84239b1  
    159159
    160160                        /* Seek to the end of this function. */
    161                         for (cur = inst + 1; !IS_JR_RA(*cur); cur++)
    162                                 ;
     161                        cur = inst + 1;
     162                        while (!IS_JR_RA(*cur))
     163                                cur++;
     164
    163165                        /* Scan the last basic block */
    164166                        for (cur--; !is_jump(*(cur - 1)); cur--) {
Note: See TracChangeset for help on using the changeset viewer.