[libc-commits] [libc] [libc] Fix missing ; in spec.td. (PR #71977)
via libc-commits
libc-commits at lists.llvm.org
Fri Nov 10 12:15:19 PST 2023
https://github.com/lntue created https://github.com/llvm/llvm-project/pull/71977
None
>From b723fbc9836e281e20f74d9f11d6c4341a6df591 Mon Sep 17 00:00:00 2001
From: Tue Ly <lntue.h at gmail.com>
Date: Fri, 10 Nov 2023 20:14:30 +0000
Subject: [PATCH] [libc] Fix missing ; in spec.td.
---
libc/spec/spec.td | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libc/spec/spec.td b/libc/spec/spec.td
index 981507a05412a14..b0d5511a4f087ee 100644
--- a/libc/spec/spec.td
+++ b/libc/spec/spec.td
@@ -51,7 +51,7 @@ def LongDoubleType : NamedType<"long double">;
def CharType : NamedType<"char">;
// TODO: Add compatibility layer to use C23 type _Float128 if possible.
-def Float128Type : NamedType<"__float128">
+def Float128Type : NamedType<"__float128">;
// Common types
def VoidPtr : PtrType<VoidType>;
More information about the libc-commits
mailing list