summaryrefslogtreecommitdiff
path: root/sal/osl/unx/asm
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-09-09 10:45:50 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-09-09 10:45:50 +0000
commit5a79f7a2dc5cfbf3b6b3e44f1475044b190bc07d (patch)
tree8392fdd70b7e88b1b82b683425ecc1ae91be6018 /sal/osl/unx/asm
parent4cd786107567b8eafdded2e7e921d31f9d1fbf86 (diff)
INTEGRATION: CWS ooo20040815 (1.3.206); FILE MERGED
2004/08/01 11:22:11 sparcmoz 1.3.206.1: #i30774# linux sparc build v8
Diffstat (limited to 'sal/osl/unx/asm')
-rw-r--r--sal/osl/unx/asm/interlck_sparc.s13
1 files changed, 8 insertions, 5 deletions
diff --git a/sal/osl/unx/asm/interlck_sparc.s b/sal/osl/unx/asm/interlck_sparc.s
index f1aed3343861..59eb0abd61e9 100644
--- a/sal/osl/unx/asm/interlck_sparc.s
+++ b/sal/osl/unx/asm/interlck_sparc.s
@@ -2,9 +2,9 @@
*
* $RCSfile: interlck_sparc.s,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2004-08-23 09:43:58 $
+ * last change: $Author: hr $ $Date: 2004-09-09 11:45:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -262,7 +262,9 @@ osl_incrementInterlockedCountV9:
1: ld [%o0], %o1
add %o1, 1, %o2
- cas [%o0], %o1, %o2
+! allow linux to build for v8
+ .word 0xD5E21009
+! cas [%o0], %o1, %o2
cmp %o1, %o2
bne 1b
nop ! delay slot
@@ -286,7 +288,9 @@ osl_decrementInterlockedCountV9:
1: ld [%o0], %o1
sub %o1, 1, %o2
- cas [%o0], %o1, %o2
+! allow linux to build for v8
+ .word 0xD5E21009
+! cas [%o0], %o1, %o2
cmp %o1, %o2
bne 1b
nop ! delay slot
@@ -295,4 +299,3 @@ osl_decrementInterlockedCountV9:
.type osl_decrementInterlockedCountV9,#function
.size osl_decrementInterlockedCountV9,.-osl_decrementInterlockedCountV9
-