[libc-commits] [libc] [libc][docs] Fix file path for fputil (PR #204534)
via libc-commits
libc-commits at lists.llvm.org
Thu Jun 18 02:21:19 PDT 2026
https://github.com/Sukumarsawant created https://github.com/llvm/llvm-project/pull/204534
Fixes a small nit in the file path for fputil from FPUtils -> FPUtil
>From d9c0628e979c39f1cf96f90e6380268b0b2a0c80 Mon Sep 17 00:00:00 2001
From: Sukumarsawant <sawantsukumar at gmail.com>
Date: Thu, 18 Jun 2026 14:26:10 +0530
Subject: [PATCH] nit
---
libc/src/math/docs/add_math_function.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libc/src/math/docs/add_math_function.md b/libc/src/math/docs/add_math_function.md
index ec909b368af01..87528030bb0ba 100644
--- a/libc/src/math/docs/add_math_function.md
+++ b/libc/src/math/docs/add_math_function.md
@@ -85,13 +85,13 @@ If the function should be available to internal LLVM projects:
- Floating point utilities and math functions that are also used internally are
located at:
```
- libc/src/__support/FPUtils
+ libc/src/__support/FPUtil
```
- These are preferred to be included as header-only.
- To manipulate bits of floating point numbers, use the template class
`LIBC_NAMESPACE::fputil::FPBits<>` in the header file:
```
- libc/src/__support/FPUtils/FPBits.h
+ libc/src/__support/FPUtil/FPBits.h
```
## Testing
More information about the libc-commits
mailing list