Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed misleading indentation
- Loading branch information
Showing
with
2 additions
and
1 deletion.
-
+2
−1
src/libm/k_rem_pio2.c
|
@@ -167,7 +167,8 @@ int attribute_hidden __kernel_rem_pio2(double *x, double *y, int e0, int nx, int |
|
|
|
|
|
/* compute q[0],q[1],...q[jk] */ |
|
|
for (i=0;i<=jk;i++) { |
|
|
for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw; |
|
|
for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; |
|
|
q[i] = fw; |
|
|
} |
|
|
|
|
|
jz = jk; |
|
|