Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Aug 2013 00:55:19 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r253908 - projects/atomic64/sys/i386/include
Message-ID:  <201308030055.r730tJxV071312@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jkim
Date: Sat Aug  3 00:55:18 2013
New Revision: 253908
URL: http://svnweb.freebsd.org/changeset/base/253908

Log:
  Remove two more "memory" from clobber list missed in the previous commit.

Modified:
  projects/atomic64/sys/i386/include/atomic.h

Modified: projects/atomic64/sys/i386/include/atomic.h
==============================================================================
--- projects/atomic64/sys/i386/include/atomic.h	Sat Aug  3 00:49:51 2013	(r253907)
+++ projects/atomic64/sys/i386/include/atomic.h	Sat Aug  3 00:55:18 2013	(r253908)
@@ -260,7 +260,7 @@ atomic_swap_64_i586(volatile uint64_t *p
 	"	jne	1b"
 	: "+m" (*p),			/* 0 */
 	  "+A" (v)			/* 1 */
-	: : "ebx", "ecx", "memory", "cc");
+	: : "ebx", "ecx", "cc");
 	return (v);
 }
 
@@ -320,7 +320,7 @@ atomic_cmpset_int(volatile u_int *dst, u
 	  "+m" (*dst),			/* 1 */
 	  "+a" (expect)			/* 2 */
 	: "r" (src)			/* 3 */
-	: "memory", "cc");
+	: "cc");
 
 	return (res);
 }



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