Skip to content

Commit

Permalink
Revert "[libc] Fix forward arm32 buildbot"
Browse files Browse the repository at this point in the history
  • Loading branch information
frobtech committed Jan 23, 2024
1 parent f7669ba commit 4855fbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libc/src/__support/FPUtil/arm/FEnvImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ LIBC_INLINE int set_except(int excepts) {
LIBC_INLINE int raise_except(int excepts) {
float zero = 0.0f;
float one = 1.0f;
float large_value = FPBits<float>::max_normal().get_val();
float small_value = FPBits<float>::min_normal().get_val();
float large_value = FPBits<float>::max_normal();
float small_value = FPBits<float>::min_normal();
auto divfunc = [](float a, float b) {
__asm__ __volatile__("flds s0, %0\n\t"
"flds s1, %1\n\t"
Expand Down

0 comments on commit 4855fbc

Please sign in to comment.