Add fall through comments
Add fall through comments I had missed writing in previously.
This commit is contained in:
parent
32efd690bd
commit
1a822c6184
@ -1,5 +1,9 @@
|
|||||||
2016-08-30 Siddhesh Poyarekar <siddhesh@sourceware.org>
|
2016-08-30 Siddhesh Poyarekar <siddhesh@sourceware.org>
|
||||||
|
|
||||||
|
* sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Add
|
||||||
|
fall through comment.
|
||||||
|
(do_sincos_1): Likewise.
|
||||||
|
|
||||||
* sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute):
|
* sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute):
|
||||||
Consolidate switch cases 0 and 2.
|
Consolidate switch cases 0 and 2.
|
||||||
|
|
||||||
|
@ -252,6 +252,7 @@ reduce_and_compute (double x, unsigned int k)
|
|||||||
case 2:
|
case 2:
|
||||||
a = -a;
|
a = -a;
|
||||||
da = -da;
|
da = -da;
|
||||||
|
/* Fall through. */
|
||||||
case 0:
|
case 0:
|
||||||
if (a * a < 0.01588)
|
if (a * a < 0.01588)
|
||||||
retval = bsloww (a, da, x, n);
|
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:
|
case 2:
|
||||||
a = -a;
|
a = -a;
|
||||||
da = -da;
|
da = -da;
|
||||||
|
/* Fall through. */
|
||||||
case 0:
|
case 0:
|
||||||
xx = a * a;
|
xx = a * a;
|
||||||
if (xx < 0.01588)
|
if (xx < 0.01588)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user