On Fri, 2009-10-30 at 10:16 +0800, Chih-hung Lu wrote: > 2009/10/29 Wu Zhangjin <wuzhangjin@xxxxxxxxx>: > > From: Wu Zhangjin <wuzhangjin@xxxxxxxxx> > > > > This patch indents the instructions in the delay slot of the file which > > has a ".set noreorder" added. > > > > and also, the "addu a0, 4" instruction is replaced by "addiu a0, a0, 4". > Hi, > > May I ask a question, > what is the difference between "addu a0, 4" and "addiu a0, a0, 4"? > They look same to me. Hello, Although they function the same under gas("addu a0, 4" will be assembled to "addiu a0, a0, 4"), but herein is exactly an immediate data operation, I just keep it be what it is! only a "cleanup" here. Thanks & Regards, Wu Zhangjin