[clang] [clang] Allow custom bug report messages (PR #157536)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Sep 8 12:50:26 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp -- clang/tools/driver/driver.cpp
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/tools/driver/driver.cpp b/clang/tools/driver/driver.cpp
index c604d2927..b3fdab617 100644
--- a/clang/tools/driver/driver.cpp
+++ b/clang/tools/driver/driver.cpp
@@ -235,13 +235,13 @@ static int ExecuteCC1Tool(SmallVectorImpl<const char *> &ArgV,
int clang_main(int Argc, char **Argv, const llvm::ToolContext &ToolContext) {
noteBottomOfStack();
- #ifdef CLANG_CUSTOM_BUG_REPORT_MSG
+#ifdef CLANG_CUSTOM_BUG_REPORT_MSG
llvm::setBugReportMsg(CLANG_CUSTOM_BUG_REPORT_MSG);
- #else
+#else
llvm::setBugReportMsg("PLEASE submit a bug report to " BUG_REPORT_URL
" and include the crash backtrace, preprocessed "
"source, and associated run script.\n");
- #endif
+#endif
SmallVector<const char *, 256> Args(Argv, Argv + Argc);
if (llvm::sys::Process::FixupStandardFileDescriptors())
``````````
</details>
https://github.com/llvm/llvm-project/pull/157536
More information about the cfe-commits
mailing list