[libc-commits] [libc] c2a96a2 - [libc] Fix locale structs with old headergen
Joseph Huber via libc-commits
libc-commits at lists.llvm.org
Thu Aug 22 11:52:14 PDT 2024
Author: Joseph Huber
Date: 2024-08-22T13:51:54-05:00
New Revision: c2a96a243b26d93090b859f851f8c219cffeaeaa
URL: https://github.com/llvm/llvm-project/commit/c2a96a243b26d93090b859f851f8c219cffeaeaa
DIFF: https://github.com/llvm/llvm-project/commit/c2a96a243b26d93090b859f851f8c219cffeaeaa.diff
LOG: [libc] Fix locale structs with old headergen
Added:
Modified:
libc/spec/stdc.td
Removed:
################################################################################
diff --git a/libc/spec/stdc.td b/libc/spec/stdc.td
index 402d8c335470ad..6d8be9f8e4016d 100644
--- a/libc/spec/stdc.td
+++ b/libc/spec/stdc.td
@@ -1665,8 +1665,8 @@ def StdC : StandardSpec<"stdc"> {
>;
- NamedType StructLconv : NamedType<"struct lconv">;
- PtrType StructLconvPtr : PtrType<StructLconv>;
+ NamedType StructLconv = NamedType<"struct lconv">;
+ PtrType StructLconvPtr = PtrType<StructLconv>;
HeaderSpec Locale = HeaderSpec<
"locale.h",
More information about the libc-commits
mailing list