From eb7204ce368f51135a20e98cece2d9b03d27ff4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20G=C3=A1lvez?= Date: Thu, 4 Sep 2025 19:20:32 +0000 Subject: [PATCH] [Support] Request including reproduction instructions in bug report message Many times people only upload the backtrace without reproduction instructions, making it difficult to work on the issue. --- llvm/lib/Support/PrettyStackTrace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Support/PrettyStackTrace.cpp b/llvm/lib/Support/PrettyStackTrace.cpp index 26e22161b605b..82b0e6ac513e1 100644 --- a/llvm/lib/Support/PrettyStackTrace.cpp +++ b/llvm/lib/Support/PrettyStackTrace.cpp @@ -39,7 +39,7 @@ using namespace llvm; static const char *BugReportMsg = "PLEASE submit a bug report to " BUG_REPORT_URL - " and include the crash backtrace.\n"; + " and include the crash backtrace and instructions to reproduce the bug.\n"; // If backtrace support is not enabled, compile out support for pretty stack // traces. This has the secondary effect of not requiring thread local storage