mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 04:23:41 +01:00
Fix misleading indentation (spotted by GCC 6)
This commit is contained in:
parent
02e0bbc7c5
commit
949c530994
1 changed files with 2 additions and 1 deletions
|
@ -311,7 +311,8 @@ __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec)
|
|||
|
||||
/* 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;
|
||||
|
|
Loading…
Reference in a new issue