svn commit: r204183 - head/sys/ia64/ia64

Marcel Moolenaar marcel at FreeBSD.org
Sun Feb 21 23:41:59 UTC 2010


Author: marcel
Date: Sun Feb 21 23:41:59 2010
New Revision: 204183
URL: http://svn.freebsd.org/changeset/base/204183

Log:
  Normalize nop instructions: Only use 0 for the immediate operand.

Modified:
  head/sys/ia64/ia64/context.S

Modified: head/sys/ia64/ia64/context.S
==============================================================================
--- head/sys/ia64/ia64/context.S	Sun Feb 21 23:10:13 2010	(r204182)
+++ head/sys/ia64/ia64/context.S	Sun Feb 21 23:41:59 2010	(r204183)
@@ -86,18 +86,18 @@ ENTRY(restorectx, 1)
 {	.mmi
 	ld8.fill	r6=[r14],16		// r6
 	ld8.fill	r7=[r15],16		// r7
-	nop		1
+	nop		0
 	;;
 }
 {	.mmi
 	mov		ar.unat=r16
 	mov		ar.rsc=3
-	nop		2
+	nop		0
 }
 {	.mmi
 	ld8		r17=[r14],16		// b1
 	ld8		r18=[r15],16		// b2
-	nop		3
+	nop		0
 	;;
 }
 {	.mmi


More information about the svn-src-all mailing list