File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ class LlvmLibcILogbTest : public LIBC_NAMESPACE::testing::FEnvSafeTest {
81
81
static_cast <StorageType>((MAX_SUBNORMAL - MIN_SUBNORMAL) / COUNT),
82
82
StorageType (1 ));
83
83
for (StorageType v = MIN_SUBNORMAL; v <= MAX_SUBNORMAL; v += STEP) {
84
- FPBits x_bits = FPBits (v);
84
+ FPBits x_bits (v);
85
85
if (x_bits.is_zero () || x_bits.is_inf_or_nan ())
86
86
continue ;
87
87
@@ -101,7 +101,7 @@ class LlvmLibcILogbTest : public LIBC_NAMESPACE::testing::FEnvSafeTest {
101
101
static_cast <StorageType>((MAX_NORMAL - MIN_NORMAL) / COUNT),
102
102
StorageType (1 ));
103
103
for (StorageType v = MIN_NORMAL; v <= MAX_NORMAL; v += STEP) {
104
- FPBits x_bits = FPBits (v);
104
+ FPBits x_bits (v);
105
105
if (x_bits.is_zero () || x_bits.is_inf_or_nan ())
106
106
continue ;
107
107
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ class LogbTest : public LIBC_NAMESPACE::testing::FEnvSafeTest {
75
75
static_cast <StorageType>(STORAGE_MAX / COUNT), StorageType (1 ));
76
76
StorageType v = 0 ;
77
77
for (int i = 0 ; i <= COUNT; ++i, v += STEP) {
78
- FPBits x_bits = FPBits (v);
78
+ FPBits x_bits (v);
79
79
if (x_bits.is_zero () || x_bits.is_inf_or_nan ())
80
80
continue ;
81
81
You can’t perform that action at this time.
0 commit comments