[cfe-commits] r72878 - in /cfe/trunk: docs/UsersManual.html www/menu.html.incl
Daniel Dunbar
daniel at zuster.org
Thu Jun 4 11:37:53 PDT 2009
Author: ddunbar
Date: Thu Jun 4 13:37:52 2009
New Revision: 72878
URL: http://llvm.org/viewvc/llvm-project?rev=72878&view=rev
Log:
Mention unsupported GCC duplicate-definition-with-inline extension.
Also, link users manual from the main web page.
Modified:
cfe/trunk/docs/UsersManual.html
cfe/trunk/www/menu.html.incl
Modified: cfe/trunk/docs/UsersManual.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/UsersManual.html?rev=72878&r1=72877&r2=72878&view=diff
==============================================================================
--- cfe/trunk/docs/UsersManual.html (original)
+++ cfe/trunk/docs/UsersManual.html Thu Jun 4 13:37:52 2009
@@ -600,6 +600,12 @@
to implement, two, the extension is completely undocumented, and three, the
extension appears to be very rarely used.</p>
+<p>clang does not support duplicate definitions of a function where one is
+inline. This complicates clients of the AST which normally can expect there is
+at most one definition for each function. Source code using this feature should
+be changed to define the inline and out-of-line definitions in separate
+translation units.</p>
+
<!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = -->
<h3 id="c_ms">Microsoft extensions</h3>
<!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = -->
Modified: cfe/trunk/www/menu.html.incl
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/menu.html.incl?rev=72878&r1=72877&r2=72878&view=diff
==============================================================================
--- cfe/trunk/www/menu.html.incl (original)
+++ cfe/trunk/www/menu.html.incl Thu Jun 4 13:37:52 2009
@@ -8,6 +8,11 @@
<a href="/index.html">About</a>
<a href="/features.html">Features</a>
<a href="/comparison.html">Comparisons</a>
+ <a href="/docs/UsersManual.html">Users Manual</a>
+ </div>
+
+ <div class="submenu">
+ <label>Clang Development</label>
<a href="/get_started.html">Get Started</a>
<a href="/get_involved.html">Get Involved</a>
<a href="/OpenProjects.html">Open Projects</a>
More information about the cfe-commits
mailing list