summaryrefslogtreecommitdiff
path: root/sal/osl/unx/interlck.c
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-07-16 16:20:50 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-07-16 16:20:50 +0000
commitd53f44d973a966b42daaf4eb9c91773101dfbf23 (patch)
tree615f3ea543bc4e62fc9ae6216a85fb7969ce949a /sal/osl/unx/interlck.c
parentf7e71b019733d9f2c5212290bed10d23be23ee85 (diff)
INTEGRATION: CWS ooo11rc2 (1.8.62); FILE MERGED
2003/07/14 18:33:54 fa 1.8.62.1: Commit interlck.c asm changes for PPC. Support gcc 3.3. http://www.openoffice.org/project/www/issues/show_bug.cgi?id=16607 Contributors: Kevin Hendircks Jim White Dan Williams Dan fa@ooo
Diffstat (limited to 'sal/osl/unx/interlck.c')
-rw-r--r--sal/osl/unx/interlck.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/osl/unx/interlck.c b/sal/osl/unx/interlck.c
index d7bf224cfe53..9697b8e3744b 100644
--- a/sal/osl/unx/interlck.c
+++ b/sal/osl/unx/interlck.c
@@ -2,9 +2,9 @@
*
* $RCSfile: interlck.c,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 16:46:03 $
+ * last change: $Author: hr $ $Date: 2003-07-16 17:20:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -123,7 +123,7 @@ oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount*
" bne- 1b"
: "=&r" (nCount), "=m" (*pCount)
: "r" (pCount)
- : "r4", "memory");
+ : "memory");
return nCount;
}
@@ -140,7 +140,7 @@ oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount*
" bne- 1b"
: "=&r" (nCount), "=m" (*pCount)
: "r" (pCount)
- : "r4", "memory");
+ : "memory");
return nCount;
}