[libc-commits] [libc] Revert "[libc] Fix forward arm32 buildbot" (PR #79201)

Roland McGrath via libc-commits libc-commits at lists.llvm.org
Tue Jan 23 12:14:05 PST 2024


https://github.com/frobtech created https://github.com/llvm/llvm-project/pull/79201

Reverts llvm/llvm-project#79151, necessary to revert #79128, which broke all production builds and landed without review.


>From 4855fbca3c3e73ed9ed8802a8f3a34b724920302 Mon Sep 17 00:00:00 2001
From: Roland McGrath <roland at hack.frob.com>
Date: Tue, 23 Jan 2024 12:12:19 -0800
Subject: [PATCH] Revert "[libc] Fix forward arm32 buildbot"

---
 libc/src/__support/FPUtil/arm/FEnvImpl.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libc/src/__support/FPUtil/arm/FEnvImpl.h b/libc/src/__support/FPUtil/arm/FEnvImpl.h
index ac4673cf20f6323..1a89de50b6b6048 100644
--- a/libc/src/__support/FPUtil/arm/FEnvImpl.h
+++ b/libc/src/__support/FPUtil/arm/FEnvImpl.h
@@ -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"



More information about the libc-commits mailing list