mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 02:03:35 +08:00
Fix indentation.
* sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f): Fix indentation.
This commit is contained in:
parent
996b03dc22
commit
976ef87054
@ -1,3 +1,8 @@
|
||||
2015-12-11 Steve Ellcey <sellcey@imgtec.com>
|
||||
|
||||
* sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f):
|
||||
Fix indentation.
|
||||
|
||||
2015-12-11 Steve Ellcey <sellcey@imgtec.com>
|
||||
|
||||
* stdio-common/vfscanf.c (_IO_vfscanf_internal): Fix indentation.
|
||||
|
@ -65,7 +65,9 @@ int __kernel_rem_pio2f(float *x, float *y, int e0, int nx, int prec, const int32
|
||||
|
||||
/* 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 New Issue
Block a user