aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/dbl-64/s_sin.c
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@sourceware.org>2016-08-30 13:00:29 +0530
committerSiddhesh Poyarekar <siddhesh@sourceware.org>2016-08-30 13:00:29 +0530
commit1a822c61844eb378bc8d676f26edf1a0285303b1 (patch)
tree8b964d1de55f2642565070bc35c63e68ef84bc3b /sysdeps/ieee754/dbl-64/s_sin.c
parent32efd690bd9ab8cb55d185bf5b0a1a3c0e539120 (diff)
downloadglibc-1a822c61844eb378bc8d676f26edf1a0285303b1.zip
glibc-1a822c61844eb378bc8d676f26edf1a0285303b1.tar.gz
glibc-1a822c61844eb378bc8d676f26edf1a0285303b1.tar.bz2
Add fall through comments
Add fall through comments I had missed writing in previously.
Diffstat (limited to 'sysdeps/ieee754/dbl-64/s_sin.c')
-rw-r--r--sysdeps/ieee754/dbl-64/s_sin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/ieee754/dbl-64/s_sin.c b/sysdeps/ieee754/dbl-64/s_sin.c
index e1ee7a9..a7f612a 100644
--- a/sysdeps/ieee754/dbl-64/s_sin.c
+++ b/sysdeps/ieee754/dbl-64/s_sin.c
@@ -252,6 +252,7 @@ reduce_and_compute (double x, unsigned int k)
case 2:
a = -a;
da = -da;
+ /* Fall through. */
case 0:
if (a * a < 0.01588)
retval = bsloww (a, da, x, n);
@@ -305,6 +306,7 @@ do_sincos_1 (double a, double da, double x, int4 n, int4 k)
case 2:
a = -a;
da = -da;
+ /* Fall through. */
case 0:
xx = a * a;
if (xx < 0.01588)