diff options
author | Connector Switch <c8ef@outlook.com> | 2025-07-21 08:19:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-21 08:19:27 +0800 |
commit | 0bb1e048453ed23d988354b86794144e631da03b (patch) | |
tree | 50c48388a3a062a9d227d921bbb00f4c8809fcb7 /libc/src | |
parent | bdbc0987ca2f2b60de30481b64a33e3e5c6192df (diff) | |
download | llvm-0bb1e048453ed23d988354b86794144e631da03b.zip llvm-0bb1e048453ed23d988354b86794144e631da03b.tar.gz llvm-0bb1e048453ed23d988354b86794144e631da03b.tar.bz2 |
[libc] Revise document on building exhaustive math functions. (#149635)
I suspect the reason is that we use `add_fp_unittest` in exhaustive
testing, so the suffix `__unit__` is necessary.
Diffstat (limited to 'libc/src')
-rw-r--r-- | libc/src/math/docs/add_math_function.md | 4 |
1 files 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 daaf1a3..d2c85ec 100644 --- a/libc/src/math/docs/add_math_function.md +++ b/libc/src/math/docs/add_math_function.md @@ -183,8 +183,8 @@ implementation (which is very often glibc). - Build and Run exhaustive test (might take hours to run): ``` - $ ninja libc.test.src.math.exhaustive.<func>_test - $ projects/libc/test/src/math/exhaustive/libc.test.src.math.exhaustive.<func>_test + $ ninja libc.test.src.math.exhaustive.<func>_test.__unit__ + $ projects/libc/test/src/math/exhaustive/libc.test.src.math.exhaustive.<func>_test.__unit__ ``` - Build and Run performance test: |