Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Sep 2011 20:13:51 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r225887 - head/sys/sparc64/include
Message-ID:  <201109302013.p8UKDpaL084914@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201109302013.p8UKDpaL084914>