Changes in kernel/arch/mips32/src/debug/stacktrace.c [a35b458:84239b1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/debug/stacktrace.c
ra35b458 r84239b1 159 159 160 160 /* 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 163 165 /* Scan the last basic block */ 164 166 for (cur--; !is_jump(*(cur - 1)); cur--) {
Note:
See TracChangeset
for help on using the changeset viewer.