mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a logic error; use beq to check for a register being NULL, not bne.
This commit is contained in:
parent
b8cb229598
commit
833d1871ba
1 changed files with 1 additions and 1 deletions
|
|
@ -250,7 +250,7 @@ Lsc_sc: /* sigcontext format */
|
|||
stq a3, 8(a0) /* save a2 on stack */
|
||||
ldq a3, ((R_A3 + 1) * 8)(a0) /* restore a3 */
|
||||
ldq a0, ((R_A0 + 1) * 8)(a0) /* restore a0 */
|
||||
Lsc3: bne a2, Lsc4
|
||||
Lsc3: beq a2, Lsc4
|
||||
stq a1, 0(a2)
|
||||
Lsc4: ldq a1, 0(sp) /* restore a1, a2 */
|
||||
ldq a2, 8(sp)
|
||||
|
|
|
|||
Loading…
Reference in a new issue