Skip to content

Commit 873853f

Browse files
committed
lib/libm: Format code to pass gcc v6.1.1 warning.
gcc 6.1.1 warns when indentation is misleading, and in this case the formatting of the code really is misleading. So adjust the formatting to be clear of the meaning of the code.
1 parent 4b90463 commit 873853f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/libm/kf_rem_pio2.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ twon8 = 3.9062500000e-03; /* 0x3b800000 */
8686

8787
/* compute q[0],q[1],...q[jk] */
8888
for (i=0;i<=jk;i++) {
89-
for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
89+
for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j];
90+
q[i] = fw;
9091
}
9192

9293
jz = jk;

0 commit comments

Comments
 (0)