Skip to content

Commit f6621ff

Browse files
committed
[libc][math][c23] Change fmodf16 to use generic FMod with uint32_t
1 parent e880ee2 commit f6621ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/math/generic/fmodf16.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
namespace LIBC_NAMESPACE {
1414

1515
LLVM_LIBC_FUNCTION(float16, fmodf16, (float16 x, float16 y)) {
16-
return fputil::generic::FMod<float16>::eval(x, y);
16+
return fputil::generic::FMod<float16, uint32_t>::eval(x, y);
1717
}
1818

1919
} // namespace LIBC_NAMESPACE

0 commit comments

Comments
 (0)