Ignore:
File:
1 edited

Legend:

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

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