summaryrefslogtreecommitdiff
path: root/packages/glibc-linaro/2.20-2014.11/0005-misleading-indentation.patch
diff options
context:
space:
mode:
Diffstat (limited to 'packages/glibc-linaro/2.20-2014.11/0005-misleading-indentation.patch')
-rw-r--r--packages/glibc-linaro/2.20-2014.11/0005-misleading-indentation.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/glibc-linaro/2.20-2014.11/0005-misleading-indentation.patch b/packages/glibc-linaro/2.20-2014.11/0005-misleading-indentation.patch
new file mode 100644
index 0000000..8e08259
--- /dev/null
+++ b/packages/glibc-linaro/2.20-2014.11/0005-misleading-indentation.patch
@@ -0,0 +1,26 @@
+commit 976ef870542580cf5fed896c2c652b3e1a95f9da
+Author: Steve Ellcey <sellcey@mips.com>
+Date: Fri Dec 11 09:19:37 2015 -0800
+
+ Fix indentation.
+
+ * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f):
+ Fix indentation.
+
+---
+ sysdeps/ieee754/flt-32/k_rem_pio2f.c | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+--- a/sysdeps/ieee754/flt-32/k_rem_pio2f.c
++++ b/sysdeps/ieee754/flt-32/k_rem_pio2f.c
+@@ -65,7 +65,9 @@
+
+ /* 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;