[libc-commits] [libc] [libc] Remove extra ] in stdc.td. (PR #81438)
via libc-commits
libc-commits at lists.llvm.org
Sun Feb 11 16:14:15 PST 2024
https://github.com/lntue created https://github.com/llvm/llvm-project/pull/81438
None
>From b65de51af98dec349cd698ccc925cc0c9d06313b Mon Sep 17 00:00:00 2001
From: Tue Ly <lntue at google.com>
Date: Sun, 11 Feb 2024 19:12:26 -0500
Subject: [PATCH] [libc] Remove extra ] in stdc.td.
---
libc/spec/stdc.td | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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