Re: [PATCH] ppc32: emulate load/store string instructions

2005-03-21 Thread Kumar Gala
Thanks, will send a patch to fix that. - kumar On Mar 19, 2005, at 8:36 AM, Segher Boessenkool wrote: + /* Early out if we are an invalid form of lswi */ + if ((instword & INST_STRING_MASK) == INST_LSWX) Typo ^ Segher - To unsubscribe from thi

Re: [PATCH] ppc32: emulate load/store string instructions

2005-03-21 Thread Segher Boessenkool
+ /* Early out if we are an invalid form of lswi */ + if ((instword & INST_STRING_MASK) == INST_LSWX) Typo ^ Segher - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More ma

[PATCH] ppc32: emulate load/store string instructions

2005-03-11 Thread Kumar Gala
Andrew, Some Book-E implementations (e500) do not implement the userland load/store string instructions. Apparently these instructions are rather painful to implement do to the fact that they modify the destination register differently then ever other instruction. Matt did the inital work so