diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-02-20 23:35:33 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-02-20 23:35:33 +0000 |
commit | 3cc3aa17fc686e41a4851ccb92918bdd1119d83c (patch) | |
tree | e7901f161567272b2cec68c9f5a9cd222ea16cb9 | |
parent | f1e11ea93609bb84a33839f936ced2a43337daa7 (diff) |
This should get me nominated for the ``stupidest bug of the year'' award.
-rw-r--r-- | sys/arch/m88k/m88k/atomic.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/m88k/m88k/atomic.S b/sys/arch/m88k/m88k/atomic.S index 4832fac314a..8c8578b99e7 100644 --- a/sys/arch/m88k/m88k/atomic.S +++ b/sys/arch/m88k/m88k/atomic.S @@ -1,4 +1,4 @@ -/* $OpenBSD: atomic.S,v 1.1 2009/02/20 20:40:01 miod Exp $ */ +/* $OpenBSD: atomic.S,v 1.2 2009/02/20 23:35:32 miod Exp $ */ /* * Copyright (c) 2009 Miodrag Vallat. @@ -84,8 +84,8 @@ ASLOCAL(__atomic_lock_88110) or.u r6, r0, hi16(_ASM_LABEL(__atomic_interlock)) or r6, r6, lo16(_ASM_LABEL(__atomic_interlock)) - or r5, r0, 1 /* __SIMPLELOCK_LOCKED */ 1: + or r5, r0, 1 /* __SIMPLELOCK_LOCKED */ xmem r5, r6, r0 bcnd eq0, r5, 3f 2: @@ -110,8 +110,8 @@ GLOBAL(__atomic_lock_88100) or.u r6, r0, hi16(_ASM_LABEL(__atomic_interlock)) or r6, r6, lo16(_ASM_LABEL(__atomic_interlock)) - or r5, r0, 1 /* __SIMPLELOCK_LOCKED */ 1: + or r5, r0, 1 /* __SIMPLELOCK_LOCKED */ xmem r5, r6, r0 bcnd eq0, r5, 3f 2: |