[clang] c4e4b64 - [docs] Update the static analyzer bug reporting page
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Sun Aug 20 07:49:38 PDT 2023
Author: Aaron Ballman
Date: 2023-08-20T10:49:29-04:00
New Revision: c4e4b64c1249f1fc438abb72e2115d334c5ba476
URL: https://github.com/llvm/llvm-project/commit/c4e4b64c1249f1fc438abb72e2115d334c5ba476
DIFF: https://github.com/llvm/llvm-project/commit/c4e4b64c1249f1fc438abb72e2115d334c5ba476.diff
LOG: [docs] Update the static analyzer bug reporting page
I happened to notice this page (https://clang-analyzer.llvm.org/filing_bugs.html)
was a bit stale, so I've updated and simplified it a bit.
* The page is now explicitly in UTF-8 (NFC)
* We no longer talk about Bugzilla and Apple's bug reporting tools, but
instead link to GitHub's issues page
* We now link to the general LLVM documentation on how to submit a bug
Differential Revision: https://reviews.llvm.org/D158360
Added:
Modified:
clang/www/analyzer/filing_bugs.html
Removed:
################################################################################
diff --git a/clang/www/analyzer/filing_bugs.html b/clang/www/analyzer/filing_bugs.html
index e802b6d9bafcca..f7183a9a0694b4 100644
--- a/clang/www/analyzer/filing_bugs.html
+++ b/clang/www/analyzer/filing_bugs.html
@@ -2,6 +2,7 @@
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
+ <meta charset="UTF-8">
<title>Filing Bugs and Feature Requests</title>
<link type="text/css" rel="stylesheet" href="menu.css">
<link type="text/css" rel="stylesheet" href="content.css">
@@ -21,8 +22,8 @@ <h1>Filing Bugs and Feature Requests</h1>
<ul>
-<li>Include the checker build (for prebuilt Mac OS X binaries) or the SVN
-revision number.</li>
+<li>Include the checker build (for prebuilt Mac OS X binaries) or the git hash.
+</li>
<li>Provide a self-contained, reduced test case that exhibits the issue you are
experiencing.</li>
@@ -33,28 +34,11 @@ <h1>Filing Bugs and Feature Requests</h1>
</ul>
-<h2>Outside of Apple</h2>
+<p>Please <a href="https://llvm.org/docs/HowToSubmitABug.html">file
+bugs and feature requests</a> in
+<a href="https://github.com/llvm/llvm-project/issues">LLVM's issue tracker</a>
+and label the report with the <code>clang:static analyzer</code> label.</p>
-<h3>Bugzilla</h3>
-
-<p>Please <a href="https://bugs.llvm.org/enter_bug.cgi?product=clang">file
-bugs</a> in LLVM's Bugzilla database against the Clang <b>Static Analyzer</b>
-component.</p>
-
-<h3>Bugreporter.apple.com</h3>
-
-<p>If you are using the analyzer to analyze code associated with an Apple NDA
-(e.g., preview versions of SDKs or seed releases of Mac OS X) please file bug
-reports to Apple's <a href="https://feedbackassistant.apple.com/welcome">Feedback Assistant</a> web
-site.</p>
-
-<p>You are free to always file bugs through this website, but this option is less
-attractive than filing bug reports through Bugzilla as not everyone who works on
-the analyzer has access to that bug database.</p>
-
-<h2>Apple-internal Users</h2>
-
-<p>Please file bugs in Radar against the <b>clang - static analyzer</b> component.</p>
</div>
</div>
</body>
More information about the cfe-commits
mailing list