Author: lattner
Date: Wed Oct 27 21:20:32 2010
New Revision: 117522

URL: http://llvm.org/viewvc/llvm-project?rev=117522&view=rev
Log:
make it really clear that vla != flexible arrays



Modified:
    cfe/trunk/docs/UsersManual.html

Modified: cfe/trunk/docs/UsersManual.html
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/UsersManual.html?rev=117522&r1=117521&r2=117522&view=diff
==============================================================================
--- cfe/trunk/docs/UsersManual.html (original)
+++ cfe/trunk/docs/UsersManual.html Wed Oct 27 21:20:32 2010
@@ -889,7 +889,9 @@
 <li>clang does not support the gcc extension that allows variable-length arrays
 in structures.  This is for a few of reasons: one, it is tricky
 to implement, two, the extension is completely undocumented, and three, the
-extension appears to be rarely used.</li>
+extension appears to be rarely used.  Note that clang <em>does</em> support
+flexible array members (arrays with a zero or unspecified size at the end of
+a structure).</li>
 
 <li>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


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to