On Thu, Jun 23, 2005 at 12:07:48PM +0100, Maciej W. Rozycki wrote: > On Wed, 22 Jun 2005, Andrew Isaacson wrote: > > Toolchain compat fix: gas 2.12.1 doesn't understand two-argument jalr, > > and the $ra is redundant anyways. > > Is it really the case? Perhaps it doesn't know the symbolic name of the > register which has only been added recently. Replacing it with $31 should > fix the problem, but your patch is obviously correct regardless. Yeah, you're right, my old gas just doesn't know $ra. s/ra/31/g works as well. -andy