Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 02e78f8

Browse files
committed
Format the MPFR manual implementation list
1 parent 0072e74 commit 02e78f8

File tree

1 file changed

+41
-7
lines changed

1 file changed

+41
-7
lines changed

crates/libm-test/src/mpfloat.rs

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,47 @@ libm_macros::for_each_function! {
135135
emit_types: [RustFn],
136136
skip: [
137137
// Most of these need a manual implementation
138-
fabs, ceil, copysign, floor, rint, round, trunc,
139-
fabsf, ceilf, copysignf, floorf, rintf, roundf, truncf,
140-
fmod, fmodf, frexp, frexpf, ilogb, ilogbf, jn, jnf, ldexp, ldexpf,
141-
lgamma_r, lgammaf_r, modf, modff, nextafter, nextafterf, pow,powf,
142-
remquo, remquof, scalbn, scalbnf, sincos, sincosf, yn, ynf,
143-
copysignf16, copysignf128, fabsf16, fabsf128,
144-
truncf16, truncf128,
138+
ceil,
139+
ceilf,
140+
copysign,
141+
copysignf,
142+
copysignf128,
143+
copysignf16,
144+
fabs,
145+
fabsf,
146+
fabsf128,
147+
fabsf16,floor,
148+
floorf,
149+
fmod,
150+
fmodf,
151+
frexp,
152+
frexpf,
153+
ilogb,
154+
ilogbf,
155+
jn,
156+
jnf,
157+
ldexp,ldexpf,
158+
lgamma_r,
159+
lgammaf_r,
160+
modf,
161+
modff,
162+
nextafter,
163+
nextafterf,
164+
pow,
165+
powf,remquo,
166+
remquof,
167+
rint,
168+
rintf,
169+
round,
170+
roundf,
171+
scalbn,
172+
scalbnf,
173+
sincos,sincosf,
174+
trunc,
175+
truncf,
176+
truncf128,
177+
truncf16,yn,
178+
ynf,
145179
],
146180
fn_extra: match MACRO_FN_NAME {
147181
// Remap function names that are different between mpfr and libm

0 commit comments

Comments
 (0)