Commit c8b9970e authored by Russ Cox's avatar Russ Cox

change *a1++; to plain a1++

R=ken
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=16489
CL=16489
parent 2e1bb4a4
...@@ -59,7 +59,7 @@ mplshw(Mpint *a) ...@@ -59,7 +59,7 @@ mplshw(Mpint *a)
a1 = &a->a[Mpprec-1]; a1 = &a->a[Mpprec-1];
for(i=1; i<Mpprec; i++) { for(i=1; i<Mpprec; i++) {
a1[0] = a1[-1]; a1[0] = a1[-1];
*a1--; a1--;
} }
a1[0] = 0; a1[0] = 0;
} }
...@@ -102,7 +102,7 @@ mprshw(Mpint *a) ...@@ -102,7 +102,7 @@ mprshw(Mpint *a)
a1 = &a->a[0]; a1 = &a->a[0];
for(i=1; i<Mpprec; i++) { for(i=1; i<Mpprec; i++) {
a1[0] = a1[1]; a1[0] = a1[1];
*a1++; a1++;
} }
a1[0] = 0; a1[0] = 0;
if(a->neg && lo == 0) if(a->neg && lo == 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment