Index: changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/changes.html,v
retrieving revision 1.87
diff -u -r1.87 changes.html
--- changes.html	11 Jan 2011 23:19:22 -0000	1.87
+++ changes.html	13 Jan 2011 18:13:20 -0000
@@ -327,6 +327,14 @@
 	<li>In pointer assignments it is now possible to specify the lower
 	bounds of the pointer and, for a rank-1 or a simply contiguous
 	data-target, to remap the bounds.</li>
+	<li>Automatic (re)allocation for arrays: In intrinsic assignments to
+	allocatable variables the left-hand side will be automatically
+	allocated (if unallocated) or reallocated (if the shape is different).
+	To avoid the small performance penalty, you can use, for instance,
+	for arrays <code>a(:) = ...</code> instead of <code>a = ...</code>
+	&ndash; or disable the feature using <code>-std=f95</code> or
+	<code>-fno-realloc-lhs</code>. Note: GCC does not yet support
+	(re)allocation on assignment for allocatable <em>scalar</em> variables.
       </ul>
     </li>
     <li>Fortran 2008 support has been extended:
