diff options
author | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2007-11-10 18:03:22 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2007-11-10 18:03:22 +0000 |
commit | 1130e1607df1907f9c2f9879e778015c531a1273 (patch) | |
tree | 6f2e3bc7c0c7e9dfab7526670b00e76e4a7bea01 | |
parent | 28762eb0895167a26ace60fdf1dd7ab89a6cf035 (diff) | |
download | gcc-1130e1607df1907f9c2f9879e778015c531a1273.zip gcc-1130e1607df1907f9c2f9879e778015c531a1273.tar.gz gcc-1130e1607df1907f9c2f9879e778015c531a1273.tar.bz2 |
* trans-common.c: Remove prototype for gfc_get_common.
From-SVN: r130073
-rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fortran/trans-common.c | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 8e28ef5..4983be7 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,5 +1,9 @@ 2007-11-10 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + * trans-common.c: Remove prototype for gfc_get_common. + +2007-11-10 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + PR fortran/33592 * trans.c (gfc_call_realloc): Fix the logic and rename variables. diff --git a/gcc/fortran/trans-common.c b/gcc/fortran/trans-common.c index 353afe7..6040782 100644 --- a/gcc/fortran/trans-common.c +++ b/gcc/fortran/trans-common.c @@ -108,12 +108,6 @@ along with GCC; see the file COPYING3. If not see #include "target-memory.h" -/* TODO: This is defined in match.h, and probably shouldn't be here also, - but we need it for now at least and don't want to include the whole - match.h. */ -gfc_common_head *gfc_get_common (const char *, int); - - /* Holds a single variable in an equivalence set. */ typedef struct segment_info { |