[libc-commits] [libc] 4974257 - [libc][math] fixing build broke for remainderf128 (#102362)
via libc-commits
libc-commits at lists.llvm.org
Wed Aug 7 13:16:03 PDT 2024
Author: aaryanshukla
Date: 2024-08-07T13:16:00-07:00
New Revision: 4974257bad6126264ed0100f4eb1ca9f1e709551
URL: https://github.com/llvm/llvm-project/commit/4974257bad6126264ed0100f4eb1ca9f1e709551
DIFF: https://github.com/llvm/llvm-project/commit/4974257bad6126264ed0100f4eb1ca9f1e709551.diff
LOG: [libc][math] fixing build broke for remainderf128 (#102362)
Added:
Modified:
libc/spec/stdc.td
Removed:
################################################################################
diff --git a/libc/spec/stdc.td b/libc/spec/stdc.td
index d3e8938b197d5..5dde6ac67f5a8 100644
--- a/libc/spec/stdc.td
+++ b/libc/spec/stdc.td
@@ -606,7 +606,7 @@ def StdC : StandardSpec<"stdc"> {
FunctionSpec<"remainderf", RetValSpec<FloatType>, [ArgSpec<FloatType>, ArgSpec<FloatType>]>,
FunctionSpec<"remainderl", RetValSpec<LongDoubleType>, [ArgSpec<LongDoubleType>, ArgSpec<LongDoubleType>]>,
GuardedFunctionSpec<"remainderf16", RetValSpec<Float16Type>, [ArgSpec<Float16Type>, ArgSpec<Float16Type>], "LIBC_TYPES_HAS_FLOAT16">,
- GuardedFunctionSpec<"remainderf128", RetValSpec<Float128Type, [ArgSpec<Float128Type>, ArgSpec<Float128Type>], "LIBC_TYPES_HAS_FLOAT128">,
+ GuardedFunctionSpec<"remainderf128", RetValSpec<Float128Type>, [ArgSpec<Float128Type>, ArgSpec<Float128Type>], "LIBC_TYPES_HAS_FLOAT128">,
FunctionSpec<"remquo", RetValSpec<DoubleType>, [ArgSpec<DoubleType>, ArgSpec<DoubleType>, ArgSpec<IntPtr>]>,
FunctionSpec<"remquof", RetValSpec<FloatType>, [ArgSpec<FloatType>, ArgSpec<FloatType>, ArgSpec<IntPtr>]>,
More information about the libc-commits
mailing list