Skip to content

Commit

Permalink
Fixed misleading indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 31, 2018
1 parent fab2e24 commit e1d8598
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libm/k_rem_pio2.c
Expand Up @@ -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;
Expand Down

0 comments on commit e1d8598

Please sign in to comment.