[libc-commits] [libc] 1a98886 - [libc] Remove extra ] in stdc.td. (#81438)
via libc-commits
libc-commits at lists.llvm.org
Sun Feb 11 17:02:42 PST 2024
Author: lntue
Date: 2024-02-11T20:02:37-05:00
New Revision: 1a988869319bb4cfe04b3d2618818180b3cfb28c
URL: https://github.com/llvm/llvm-project/commit/1a988869319bb4cfe04b3d2618818180b3cfb28c
DIFF: https://github.com/llvm/llvm-project/commit/1a988869319bb4cfe04b3d2618818180b3cfb28c.diff
LOG: [libc] Remove extra ] in stdc.td. (#81438)
Added:
Modified:
libc/spec/stdc.td
Removed:
################################################################################
diff --git a/libc/spec/stdc.td b/libc/spec/stdc.td
index afddc77b07da6a..011abbfa496533 100644
--- a/libc/spec/stdc.td
+++ b/libc/spec/stdc.td
@@ -401,7 +401,7 @@ def StdC : StandardSpec<"stdc"> {
FunctionSpec<"frexp", RetValSpec<DoubleType>, [ArgSpec<DoubleType>, ArgSpec<IntPtr>]>,
FunctionSpec<"frexpf", RetValSpec<FloatType>, [ArgSpec<FloatType>, ArgSpec<IntPtr>]>,
FunctionSpec<"frexpl", RetValSpec<LongDoubleType>, [ArgSpec<LongDoubleType>, ArgSpec<IntPtr>]>,
- GuardedFunctionSpec<"frexpf128", RetValSpec<Float128Type>, [ArgSpec<Float128Type>, ArgSpec<IntPtr>]], "LIBC_COMPILER_HAS_FLOAT128">,
+ GuardedFunctionSpec<"frexpf128", RetValSpec<Float128Type>, [ArgSpec<Float128Type>, ArgSpec<IntPtr>], "LIBC_COMPILER_HAS_FLOAT128">,
FunctionSpec<"hypot", RetValSpec<DoubleType>, [ArgSpec<DoubleType>, ArgSpec<DoubleType>]>,
FunctionSpec<"hypotf", RetValSpec<FloatType>, [ArgSpec<FloatType>, ArgSpec<FloatType>]>,
More information about the libc-commits
mailing list