diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-12-28 18:40:29 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-12-28 18:40:29 +0000 |
commit | 5db298a3e24f699cadd0b19c7d691056eea3a056 (patch) | |
tree | bde20bb44aadc41545f54d97ae6e831e07886d51 | |
parent | fb0346227cb77fe74ebe8ac4ca4abf666b5d3d49 (diff) |
Previous diff had a buglet, found the hard way by pea@
-rw-r--r-- | sys/arch/mips64/mips64/exception.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/mips64/exception.S b/sys/arch/mips64/mips64/exception.S index d23933e39b3..a02a560136b 100644 --- a/sys/arch/mips64/mips64/exception.S +++ b/sys/arch/mips64/mips64/exception.S @@ -1,4 +1,4 @@ -/* $OpenBSD: exception.S,v 1.31 2010/12/13 10:49:48 kettenis Exp $ */ +/* $OpenBSD: exception.S,v 1.32 2010/12/28 18:40:28 miod Exp $ */ /* * Copyright (c) 2002-2003 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -428,8 +428,8 @@ NNON_LEAF(u_general, FRAMESZ(CF_SZ), ra) jal trap PTR_S a3, CF_RA_OFFS(sp) # for debugging - GET_CPU_INFO(t1, t0) 0: + GET_CPU_INFO(t1, t0) PTR_L t0, CI_CURPROC(t1) lw v0, P_ASTPENDING(t0) # any pending AST? beq v0, zero, 4f |