1
0
mirror of https://github.com/golang/go synced 2024-11-20 11:14:45 -07:00

change *a1++; to plain a1++

R=ken
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=16489
CL=16489
This commit is contained in:
Russ Cox 2008-10-04 02:54:19 -07:00
parent 2e1bb4a4cf
commit c8b9970e16

View File

@ -59,7 +59,7 @@ mplshw(Mpint *a)
a1 = &a->a[Mpprec-1];
for(i=1; i<Mpprec; i++) {
a1[0] = a1[-1];
*a1--;
a1--;
}
a1[0] = 0;
}
@ -102,7 +102,7 @@ mprshw(Mpint *a)
a1 = &a->a[0];
for(i=1; i<Mpprec; i++) {
a1[0] = a1[1];
*a1++;
a1++;
}
a1[0] = 0;
if(a->neg && lo == 0)