svn commit: r225887 - head/sys/sparc64/include

Marius Strobl marius at FreeBSD.org
Fri Sep 30 20:13:52 UTC 2011


Author: marius
Date: Fri Sep 30 20:13:51 2011
New Revision: 225887
URL: http://svn.freebsd.org/changeset/base/225887

Log:
  Use the extended integer condition code when comparing 64-bit values. Given
  that ATOMIC_INC_LONG currently is unused this happened to not be fatal.

Modified:
  head/sys/sparc64/include/asmacros.h

Modified: head/sys/sparc64/include/asmacros.h
==============================================================================
--- head/sys/sparc64/include/asmacros.h	Fri Sep 30 20:06:23 2011	(r225886)
+++ head/sys/sparc64/include/asmacros.h	Fri Sep 30 20:13:51 2011	(r225887)
@@ -76,7 +76,7 @@
 9:	add	r2, 1, r3 ;						\
 	casxa	[r1] ASI_N, r2, r3 ;					\
 	cmp	r2, r3 ;						\
-	bne,pn	%icc, 9b ;						\
+	bne,pn	%xcc, 9b ;						\
 	 mov	r3, r2
 
 /*


More information about the svn-src-head mailing list