[cfe-commits] r102851 - /cfe/trunk/docs/InternalsManual.html
Chris Lattner
sabre at nondot.org
Sat May 1 10:35:19 PDT 2010
Author: lattner
Date: Sat May 1 12:35:19 2010
New Revision: 102851
URL: http://llvm.org/viewvc/llvm-project?rev=102851&view=rev
Log:
fix a broken link, diagnostickinds.td was fissioned.
Modified:
cfe/trunk/docs/InternalsManual.html
Modified: cfe/trunk/docs/InternalsManual.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/InternalsManual.html?rev=102851&r1=102850&r2=102851&view=diff
==============================================================================
--- cfe/trunk/docs/InternalsManual.html (original)
+++ cfe/trunk/docs/InternalsManual.html Sat May 1 12:35:19 2010
@@ -145,13 +145,13 @@
pieces, this section describes them and talks about best practices when adding
a new diagnostic.</p>
-<!-- ============================ -->
-<h4>The DiagnosticKinds.def file</h4>
-<!-- ============================ -->
-
-<p>Diagnostics are created by adding an entry to the <tt><a
-href="http://llvm.org/svn/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticKinds.def"
->DiagnosticKinds.def</a></tt> file. This file encodes the unique ID of the
+<!-- ============================== -->
+<h4>The Diagnostic*Kinds.def files</h4>
+<!-- ============================== -->
+
+<p>Diagnostics are created by adding an entry to one of the <tt>
+clang/Basic/Diagnostic*Kinds.def</tt> files, depending on what library will
+be using it. This file encodes the unique ID of the
diagnostic (as an enum, the first argument), the severity of the diagnostic
(second argument) and the English translation + format string.</p>
More information about the cfe-commits
mailing list