diff options
author | Francois-Xavier Coudert <coudert@clipper.ens.fr> | 2007-02-16 11:07:00 +0100 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2007-02-16 10:07:00 +0000 |
commit | 6eedbf0dced75e0a1a66a13b3c769e7659295def (patch) | |
tree | 3757bae66abffa2963e537ebe30e385d9a4dd880 | |
parent | 73865312272b9900466e8a3223e340d028550dab (diff) | |
download | gcc-6eedbf0dced75e0a1a66a13b3c769e7659295def.zip gcc-6eedbf0dced75e0a1a66a13b3c769e7659295def.tar.gz gcc-6eedbf0dced75e0a1a66a13b3c769e7659295def.tar.bz2 |
* runtime/memory.c (deallocate): Correct comment.
From-SVN: r122038
-rw-r--r-- | libgfortran/ChangeLog | 4 | ||||
-rw-r--r-- | libgfortran/runtime/memory.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index ad8d095..f9c8632 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -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. diff --git a/libgfortran/runtime/memory.c b/libgfortran/runtime/memory.c index b38d062..5839530 100644 --- a/libgfortran/runtime/memory.c +++ b/libgfortran/runtime/memory.c @@ -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); |