linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* bug in arch/ppc/boot/common/util.S: cmplwi  cr0,r3,r4 ?
@ 2005-08-03 13:18 Frank van Maarseveen
  2005-08-04  9:44 ` Benjamin Herrenschmidt
  0 siblings, 1 reply; 5+ messages in thread
From: Frank van Maarseveen @ 2005-08-03 13:18 UTC (permalink / raw)
  To: linuxppc-dev


I think "cmplwi" expects an immediate vale as last operand
around line 255 of arch/ppc/boot/common/util.S:

	addi	r4,r4,_etext@l		# r8 = &_etext
1:	dcbf	r0,r3			# Flush the data cache
	icbi	r0,r3			# Invalidate the instruction cache
	addi	r3,r3,0x10		# Increment by one cache line
	cmplwi	cr0,r3,r4		# Are we at the end yet?
	               ^^
	blt	1b			# No, keep flushing and invalidating

I guess it should have been:

	cmplw	cr0,r3,r4		# Are we at the end yet?

-- 
Frank

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-08-09  8:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-03 13:18 bug in arch/ppc/boot/common/util.S: cmplwi cr0,r3,r4 ? Frank van Maarseveen
2005-08-04  9:44 ` Benjamin Herrenschmidt
2005-08-09  0:50   ` Tom Rini
2005-08-09  2:20     ` Hollis Blanchard
2005-08-09  8:33     ` Benjamin Herrenschmidt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).