Skip to content

Commit 9122d19

Browse files
authored
Revert "[libc] Fix forward arm32 buildbot" (llvm#79201)
Reverts llvm#79151, necessary to revert llvm#79128, which broke all production builds and landed without review.
1 parent 7ca8feb commit 9122d19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/src/__support/FPUtil/arm/FEnvImpl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ LIBC_INLINE int set_except(int excepts) {
135135
LIBC_INLINE int raise_except(int excepts) {
136136
float zero = 0.0f;
137137
float one = 1.0f;
138-
float large_value = FPBits<float>::max_normal().get_val();
139-
float small_value = FPBits<float>::min_normal().get_val();
138+
float large_value = FPBits<float>::max_normal();
139+
float small_value = FPBits<float>::min_normal();
140140
auto divfunc = [](float a, float b) {
141141
__asm__ __volatile__("flds s0, %0\n\t"
142142
"flds s1, %1\n\t"

0 commit comments

Comments
 (0)