diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2016-08-30 13:00:29 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2016-08-30 13:00:29 +0530 |
commit | 1a822c61844eb378bc8d676f26edf1a0285303b1 (patch) | |
tree | 8b964d1de55f2642565070bc35c63e68ef84bc3b /sysdeps/ieee754/dbl-64 | |
parent | 32efd690bd9ab8cb55d185bf5b0a1a3c0e539120 (diff) | |
download | glibc-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')
-rw-r--r-- | sysdeps/ieee754/dbl-64/s_sin.c | 2 |
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) |