Skip to content

Commit ae92cf0

Browse files
authored
fix: use significand mask in math/base/special/rempio2
PR-URL: #2366 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 9df1610 commit ae92cf0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/math/base/special/rempio2/manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"@stdlib/number/float64/base/from-words",
5050
"@stdlib/constants/float64/high-word-abs-mask",
5151
"@stdlib/constants/float64/high-word-exponent-mask",
52-
"@stdlib/constants/float64/high-word-sign-mask"
52+
"@stdlib/constants/float64/high-word-significand-mask"
5353
]
5454
},
5555
{
@@ -71,7 +71,7 @@
7171
"@stdlib/number/float64/base/from-words",
7272
"@stdlib/constants/float64/high-word-abs-mask",
7373
"@stdlib/constants/float64/high-word-exponent-mask",
74-
"@stdlib/constants/float64/high-word-sign-mask"
74+
"@stdlib/constants/float64/high-word-significand-mask"
7575
]
7676
},
7777
{
@@ -93,7 +93,7 @@
9393
"@stdlib/number/float64/base/from-words",
9494
"@stdlib/constants/float64/high-word-abs-mask",
9595
"@stdlib/constants/float64/high-word-exponent-mask",
96-
"@stdlib/constants/float64/high-word-sign-mask"
96+
"@stdlib/constants/float64/high-word-significand-mask"
9797
]
9898
}
9999
]

lib/node_modules/@stdlib/math/base/special/rempio2/src/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#include "stdlib/number/float64/base/from_words.h"
4040
#include "stdlib/constants/float64/high_word_abs_mask.h"
4141
#include "stdlib/constants/float64/high_word_exponent_mask.h"
42-
#include "stdlib/constants/float64/high_word_sign_mask.h"
42+
#include "stdlib/constants/float64/high_word_significand_mask.h"
4343
#include <stdint.h>
4444

4545
static const double ZERO = 0.00000000000000000000e+00; // 0x00000000, 0x00000000
@@ -488,7 +488,7 @@ int32_t stdlib_base_rempio2( const double x, double *rem1, double *rem2 ) {
488488
// Case: |x| ~<= 5π/4
489489
if ( ix <= FIVE_PIO4_HIGH_WORD ) {
490490
// Case: |x| ~= π/2 or π
491-
if ( ( ix & STDLIB_CONSTANT_FLOAT64_HIGH_WORD_SIGN_MASK ) == PI_HIGH_WORD_SIGNIFICAND ) {
491+
if ( ( ix & STDLIB_CONSTANT_FLOAT64_HIGH_WORD_SIGNIFICAND_MASK ) == PI_HIGH_WORD_SIGNIFICAND ) {
492492
// Cancellation => use medium case
493493
goto medium;
494494
}

0 commit comments

Comments
 (0)