We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca8feb commit 9122d19Copy full SHA for 9122d19
libc/src/__support/FPUtil/arm/FEnvImpl.h
@@ -135,8 +135,8 @@ LIBC_INLINE int set_except(int excepts) {
135
LIBC_INLINE int raise_except(int excepts) {
136
float zero = 0.0f;
137
float one = 1.0f;
138
- float large_value = FPBits<float>::max_normal().get_val();
139
- float small_value = FPBits<float>::min_normal().get_val();
+ float large_value = FPBits<float>::max_normal();
+ float small_value = FPBits<float>::min_normal();
140
auto divfunc = [](float a, float b) {
141
__asm__ __volatile__("flds s0, %0\n\t"
142
"flds s1, %1\n\t"
0 commit comments