2000-02-14  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/powerpc/atomicity.h: Remove white space to avoid
	compiler warning.
This commit is contained in:
Ulrich Drepper 2000-02-14 23:28:28 +00:00
parent 5b26325f14
commit 7c437eb803
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-02-14 Ulrich Drepper <drepper@redhat.com>
* sysdeps/powerpc/atomicity.h: Remove white space to avoid
compiler warning.
2000-02-14 Scott Bambrough <scottb@netwinder.org>
* sysdeps/unix/sysv/linux/arm/ioperm.c (_iopl, _ioperm): Add

View File

@ -1,5 +1,5 @@
/* Low-level functions for atomic operations. PowerPC version.
Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -67,7 +67,7 @@ compare_and_swap (volatile long int *p, long int oldval, long int newval)
bne- 1f
stwcx. %3,0,%1
bne- 0b
1:
1:
" : "=&b"(result) : "r"(p), "Ir"(oldval), "r"(newval) : "cr0", "memory");
return result >> 5;
}