Author: actink Date: 2025-12-13T19:20:46+08:00 New Revision: 09197e4633c9c63e4c1396b793ed9bd6efc18408
URL: https://github.com/llvm/llvm-project/commit/09197e4633c9c63e4c1396b793ed9bd6efc18408 DIFF: https://github.com/llvm/llvm-project/commit/09197e4633c9c63e4c1396b793ed9bd6efc18408.diff LOG: [Docs] Fix typo: missing closing parenthesis in __attribute__ (#172148) Added: Modified: clang/include/clang/Basic/AttrDocs.td Removed: ################################################################################ diff --git a/clang/include/clang/Basic/AttrDocs.td b/clang/include/clang/Basic/AttrDocs.td index ec20f7ed93eb8..ce332250654e3 100644 --- a/clang/include/clang/Basic/AttrDocs.td +++ b/clang/include/clang/Basic/AttrDocs.td @@ -4140,7 +4140,7 @@ of 2. .. code-block:: c typedef double * aligned_double_ptr __attribute__((align_value(64))); - void foo(double & x __attribute__((align_value(128)), + void foo(double & x __attribute__((align_value(128))), aligned_double_ptr y) { ... } If the pointer value does not have the specified alignment at runtime, the _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
