[clang-tools-extra] [clang-tidy][doc] align the title style in clang-tidy/index.rst (PR #119938)
llvm-ci wrote: LLVM Buildbot has detected a new failure on builder `llvm-clang-x86_64-sie-win` running on `sie-win-worker` while building `clang-tools-extra` at step 7 "test-build-unified-tree-check-all". Full details are available at: https://lab.llvm.org/buildbot/#/builders/46/builds/9200 Here is the relevant piece of the build log for the reference ``` Step 7 (test-build-unified-tree-check-all) failure: test (failure) TEST 'Clang :: AST/builtins-arm-strex-rettype.c' FAILED Exit Code: 1 Command Output (stdout): -- # RUN: at line 1 z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe -cc1 -internal-isystem Z:\b\llvm-clang-x86_64-sie-win\build\lib\clang\20\include -nostdsysteminc -triple thumbv7m-apple-darwin-eabi -ast-dump Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\AST\builtins-arm-strex-rettype.c | z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\AST\builtins-arm-strex-rettype.c # executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\clang.exe' -cc1 -internal-isystem 'Z:\b\llvm-clang-x86_64-sie-win\build\lib\clang\20\include' -nostdsysteminc -triple thumbv7m-apple-darwin-eabi -ast-dump 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\AST\builtins-arm-strex-rettype.c' # .---command stderr # | Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\AST\builtins-arm-strex-rettype.c:7:12: error: use of unknown builtin '__builtin_arm_strex' [-Wimplicit-function-declaration] # | 7 | } while (__builtin_arm_strex(a, b)); # | |^ # | 1 error generated. # `- # error: command failed with exit status: 1 # executed command: 'z:\b\llvm-clang-x86_64-sie-win\build\bin\filecheck.exe' 'Z:\b\llvm-clang-x86_64-sie-win\llvm-project\clang\test\AST\builtins-arm-strex-rettype.c' -- ``` https://github.com/llvm/llvm-project/pull/119938 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang-tools-extra] [clang-tidy][doc] align the title style in clang-tidy/index.rst (PR #119938)
https://github.com/HerrCai0907 closed https://github.com/llvm/llvm-project/pull/119938 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang-tools-extra] [clang-tidy][doc] align the title style in clang-tidy/index.rst (PR #119938)
https://github.com/HerrCai0907 updated https://github.com/llvm/llvm-project/pull/119938 >From 16ad345cbb84f4d58a0d2c64734d92de9e4efb56 Mon Sep 17 00:00:00 2001 From: Congcong Cai Date: Sat, 14 Dec 2024 08:09:40 +0800 Subject: [PATCH 1/2] [clang-tidy][doc] align the title style in clang-tidy/index.rst Uppercase each word in title and toctree _Originally posted by @nicovank in https://github.com/llvm/llvm-project/pull/119842#discussion_r1884559775_. --- clang-tools-extra/docs/clang-tidy/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang-tools-extra/docs/clang-tidy/index.rst b/clang-tools-extra/docs/clang-tidy/index.rst index a4233d5d8e2694..26f11426c1dc4d 100644 --- a/clang-tools-extra/docs/clang-tidy/index.rst +++ b/clang-tools-extra/docs/clang-tidy/index.rst @@ -9,7 +9,7 @@ See also: .. toctree:: :maxdepth: 1 - The list of clang-tidy checks + The List of Clang-Tidy Checks Clang-tidy IDE/Editor Integrations Getting Involved External Clang-Tidy Examples @@ -21,7 +21,7 @@ static analysis. :program:`clang-tidy` is modular and provides a convenient interface for writing new checks. -Using clang-tidy +Using Clang-Tidy :program:`clang-tidy` is a `LibTooling`_-based tool, and it's easier to work >From 70902c3cf2693e5691c4574979308d4b4725cffa Mon Sep 17 00:00:00 2001 From: Congcong Cai Date: Sat, 14 Dec 2024 13:52:08 +0800 Subject: [PATCH 2/2] Update clang-tools-extra/docs/clang-tidy/index.rst Co-authored-by: Nicolas van Kempen --- clang-tools-extra/docs/clang-tidy/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-tools-extra/docs/clang-tidy/index.rst b/clang-tools-extra/docs/clang-tidy/index.rst index 26f11426c1dc4d..f053e57e8d4c84 100644 --- a/clang-tools-extra/docs/clang-tidy/index.rst +++ b/clang-tools-extra/docs/clang-tidy/index.rst @@ -9,7 +9,7 @@ See also: .. toctree:: :maxdepth: 1 - The List of Clang-Tidy Checks + List of Clang-Tidy Checks Clang-tidy IDE/Editor Integrations Getting Involved External Clang-Tidy Examples ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang-tools-extra] [clang-tidy][doc] align the title style in clang-tidy/index.rst (PR #119938)
@@ -9,7 +9,7 @@ See also: .. toctree:: :maxdepth: 1 - The list of clang-tidy checks + The List of Clang-Tidy Checks nicovank wrote: Maybe? ```suggestion List of Clang-Tidy Checks ``` https://github.com/llvm/llvm-project/pull/119938 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang-tools-extra] [clang-tidy][doc] align the title style in clang-tidy/index.rst (PR #119938)
https://github.com/nicovank approved this pull request. Ctrl+F -ing for lowercase `clang-tidy` reveals a couple more places where it should maybe be updated: lines 331, 350 and 352 (`` :program:`clang-tidy` ``?). It's very minor anyway. https://github.com/llvm/llvm-project/pull/119938 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang-tools-extra] [clang-tidy][doc] align the title style in clang-tidy/index.rst (PR #119938)
https://github.com/nicovank edited https://github.com/llvm/llvm-project/pull/119938 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang-tools-extra] [clang-tidy][doc] align the title style in clang-tidy/index.rst (PR #119938)
llvmbot wrote: @llvm/pr-subscribers-clang-tools-extra Author: Congcong Cai (HerrCai0907) Changes Uppercase each word in title and toctree _Originally posted by @nicovank in https://github.com/llvm/llvm-project/pull/119842#discussion_r1884559775_. --- Full diff: https://github.com/llvm/llvm-project/pull/119938.diff 1 Files Affected: - (modified) clang-tools-extra/docs/clang-tidy/index.rst (+2-2) ``diff diff --git a/clang-tools-extra/docs/clang-tidy/index.rst b/clang-tools-extra/docs/clang-tidy/index.rst index a4233d5d8e2694..26f11426c1dc4d 100644 --- a/clang-tools-extra/docs/clang-tidy/index.rst +++ b/clang-tools-extra/docs/clang-tidy/index.rst @@ -9,7 +9,7 @@ See also: .. toctree:: :maxdepth: 1 - The list of clang-tidy checks + The List of Clang-Tidy Checks Clang-tidy IDE/Editor Integrations Getting Involved External Clang-Tidy Examples @@ -21,7 +21,7 @@ static analysis. :program:`clang-tidy` is modular and provides a convenient interface for writing new checks. -Using clang-tidy +Using Clang-Tidy :program:`clang-tidy` is a `LibTooling`_-based tool, and it's easier to work `` https://github.com/llvm/llvm-project/pull/119938 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang-tools-extra] [clang-tidy][doc] align the title style in clang-tidy/index.rst (PR #119938)
https://github.com/HerrCai0907 created https://github.com/llvm/llvm-project/pull/119938 Uppercase each word in title and toctree _Originally posted by @nicovank in https://github.com/llvm/llvm-project/pull/119842#discussion_r1884559775_. >From 16ad345cbb84f4d58a0d2c64734d92de9e4efb56 Mon Sep 17 00:00:00 2001 From: Congcong Cai Date: Sat, 14 Dec 2024 08:09:40 +0800 Subject: [PATCH] [clang-tidy][doc] align the title style in clang-tidy/index.rst Uppercase each word in title and toctree _Originally posted by @nicovank in https://github.com/llvm/llvm-project/pull/119842#discussion_r1884559775_. --- clang-tools-extra/docs/clang-tidy/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang-tools-extra/docs/clang-tidy/index.rst b/clang-tools-extra/docs/clang-tidy/index.rst index a4233d5d8e2694..26f11426c1dc4d 100644 --- a/clang-tools-extra/docs/clang-tidy/index.rst +++ b/clang-tools-extra/docs/clang-tidy/index.rst @@ -9,7 +9,7 @@ See also: .. toctree:: :maxdepth: 1 - The list of clang-tidy checks + The List of Clang-Tidy Checks Clang-tidy IDE/Editor Integrations Getting Involved External Clang-Tidy Examples @@ -21,7 +21,7 @@ static analysis. :program:`clang-tidy` is modular and provides a convenient interface for writing new checks. -Using clang-tidy +Using Clang-Tidy :program:`clang-tidy` is a `LibTooling`_-based tool, and it's easier to work ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits