Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Apr 2003 11:58:27 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 28540 for review
Message-ID:  <200304081858.h38IwRYn073069@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=28540

Change 28540 by peter@peter_daintree on 2003/04/08 11:57:30

	convert to hammer regparm

Affected files ...

.. //depot/projects/hammer/sys/x86_64/isa/icu_ipl.s#3 edit

Differences ...

==== //depot/projects/hammer/sys/x86_64/isa/icu_ipl.s#3 (text+ko) ====

@@ -48,7 +48,7 @@
 	SUPERALIGN_TEXT
 
 ENTRY(INTREN)
-	movq	8(%rsp), %rax	# XXX wrong, use regparm
+	movq	%rdi, %rax
 	movl	%eax, %ecx
 	notl	%eax
 	andl	%eax, imen
@@ -65,7 +65,7 @@
 	ret
 
 ENTRY(INTRDIS)
-	movq	8(%rsp), %rax	# XXX wrong, use regparm
+	movq	%rdi, %rax
 	movl	%eax, %ecx
 	orl	%eax, imen
 	movl	imen, %eax



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