* runtime/memory.c (deallocate): Correct comment.
authorfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 16 Feb 2007 10:07:00 +0000 (10:07 +0000)
committerfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 16 Feb 2007 10:07:00 +0000 (10:07 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122038 138bc75d-0d04-0410-961f-82ee72b054a4

libgfortran/ChangeLog
libgfortran/runtime/memory.c

index ad8d095..f9c8632 100644 (file)
@@ -1,3 +1,7 @@
+2007-02-16  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
+
+       * runtime/memory.c (deallocate): Correct comment.
+
 2007-02-10  Thomas Koenig  <Thomas.Koenig@online.de>
 
        * Makefile.am:  Use $(M4) instead of m4.
index b38d062..5839530 100644 (file)
@@ -269,7 +269,7 @@ allocate64_array (void *mem, GFC_INTEGER_8 size, GFC_INTEGER_4 * stat)
   runtime_error ("Attempting to allocate already allocated array.");
 }
 
-/* User-deallocate; pointer is NULLified. */
+/* User-deallocate; pointer is then NULLified by the front-end. */
 
 extern void deallocate (void *, GFC_INTEGER_4 *);
 export_proto(deallocate);