Commit b7fe530c by Benjamin Kosnik Committed by Benjamin Kosnik

atomicity.h: Fix typo.




2000-04-30  Benjamin Kosnik  <bkoz@gnu.org>

	* config/cpu/powerpc/bits/atomicity.h: Fix typo.
	* mknumeric_limits (trait_name): Fix copyright notice.
	* src/gen-num-limits.cc: Explicitly instantiate epsilon and
	round_error data members of struct value. This works around
	weak-linking issues on AIX, HPUX.

From-SVN: r33580
parent 2f9b4377
2000-04-30 Benjamin Kosnik <bkoz@gnu.org> 2000-04-30 Benjamin Kosnik <bkoz@gnu.org>
* config/cpu/powerpc/bits/atomicity.h (__compare_and_swap): Fix typo.
* mknumeric_limits (trait_name): Fix copyright notice. * mknumeric_limits (trait_name): Fix copyright notice.
* src/gen-num-limits.cc: Explicitly instantiate epsilon and * src/gen-num-limits.cc: Explicitly instantiate epsilon and
round_error data members of struct value. This works around round_error data members of struct value. This works around
......
...@@ -57,7 +57,7 @@ __atomic_add (volatile _Atomic_word *__mem, int __val) ...@@ -57,7 +57,7 @@ __atomic_add (volatile _Atomic_word *__mem, int __val)
static __ATOMICITY_INLINE int static __ATOMICITY_INLINE int
__attribute__ ((unused)) __attribute__ ((unused))
__compare_and_swap (volatile long *p, long int __oldval, long int __newval) __compare_and_swap (volatile long *__p, long int __oldval, long int __newval)
{ {
int __result; int __result;
__asm__ ("\ __asm__ ("\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment