[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:48 PST 2023


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libc

Author: None (lntue)

<details>
<summary>Changes</summary>



---
Full diff: https://github.com/llvm/llvm-project/pull/71977.diff


1 Files Affected:

- (modified) libc/spec/spec.td (+1-1) 


``````````diff
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>;

``````````

</details>


https://github.com/llvm/llvm-project/pull/71977


More information about the libc-commits mailing list