Date: Sun, 21 Feb 2010 23:41:59 +0000 (UTC) From: Marcel Moolenaar <marcel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r204183 - head/sys/ia64/ia64 Message-ID: <201002212341.o1LNfx83072818@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201002212341.o1LNfx83072818>