diff options
author | 1998-08-25 07:55:19 +0000 | |
---|---|---|
committer | 1998-08-25 07:55:19 +0000 | |
commit | 970c0ef9a2c90cc8e53e26cc755a3c034bd37f9f (patch) | |
tree | 48d6c08fc6bc2d6b4b64f9a9f4d6dd7e1c7db012 | |
parent | Use symbolic names (diff) | |
download | wireguard-openbsd-970c0ef9a2c90cc8e53e26cc755a3c034bd37f9f.tar.xz wireguard-openbsd-970c0ef9a2c90cc8e53e26cc755a3c034bd37f9f.zip |
Faultbuf mods
-rw-r--r-- | sys/arch/powerpc/powerpc/locore.S | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/powerpc/powerpc/locore.S b/sys/arch/powerpc/powerpc/locore.S index 52c611505d2..29e41708879 100644 --- a/sys/arch/powerpc/powerpc/locore.S +++ b/sys/arch/powerpc/powerpc/locore.S @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.S,v 1.6 1998/08/22 18:31:55 rahnds Exp $ */ +/* $OpenBSD: locore.S,v 1.7 1998/08/25 07:55:19 pefo Exp $ */ /* $NetBSD: locore.S,v 1.2 1996/10/16 19:33:09 ws Exp $ */ /* @@ -1228,12 +1228,13 @@ _C_LABEL(ipkdbsbyte): _C_LABEL(setfault): mflr 0 mfcr 12 + mfmsr 2 lis 4,_C_LABEL(curpcb)@ha lwz 4,_C_LABEL(curpcb)@l(4) stw 3,PCB_FAULT(4) stw 0,0(3) - stw 1,4(3) - stw 2,8(3) + stw 2,4(3) + stw 1,8(3) stmw 12,12(3) xor 3,3,3 blr |