Hi,

Thanks for the review.

On Sat, Oct 27, 2018 at 06:25:04PM -0500, Segher Boessenkool wrote:
> Hi!
> 
> On Sat, Oct 27, 2018 at 01:37:00PM +0900, Stafford Horne wrote:
> > +   /* Given R = X * Y ... */
> > +1: l.sfeq          r4, r0                  /* while (y != 0) */
> > +   l.bf            2f
> > +    l.andi         r5, r4, 1               /* if (y & 1) ... */
> 
> Do the extra leading spaces mean something?

Yes, we put those to indicate a branch delay slot instruction.

> > +        l.sfeqi            r4, 0           /* division by zero; return 0.  
> > */
> 
> In some places (like here) you ident with 8 spaces instead of a tab.

Thanks, I will fix those, it should be tab.

> > +/* For signed division we do:
> > + *
> > + *   -x / y = x / -y = -(x / y)
> > + *   -x % y = -(x % y)
> > + *   x % -y = x % b
> > + *
> > + * which has the property that (x/y)*y + (x%y) = x.
> > + */
> 
> You mean "y" instead of "b" I think.

I believe so, I will read through it.  This part was done by Richard I should
have reviewed it better.

-Stafford

Reply via email to