From: brooks Date: Sat, 24 Mar 2007 09:41:55 +0000 (+0000) Subject: * gfortran.h: Edit comments on GFC_STD_*. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5dc98257b6c5d507d9610452d8dcfb63c235017b;p=thirdparty%2Fgcc.git * gfortran.h: Edit comments on GFC_STD_*. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123182 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 3c5189b20864..645a52930992 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2007-03-24 Brooks Moses + + * gfortran.h: Edit comments on GFC_STD_*. + 2007-03-23 Brooks Moses * invoke.texi: Misc. small typo fixes. diff --git a/gcc/fortran/gfortran.h b/gcc/fortran/gfortran.h index 6da8a9333e57..cd1d7616d714 100644 --- a/gcc/fortran/gfortran.h +++ b/gcc/fortran/gfortran.h @@ -99,11 +99,14 @@ mstring; #define GFC_STD_LEGACY (1<<6) /* Backward compatibility. */ #define GFC_STD_GNU (1<<5) /* GNU Fortran extension. */ #define GFC_STD_F2003 (1<<4) /* New in F2003. */ -/* Note that no features were obsoleted nor deleted in F2003. */ +/* Note that no additional features were deleted or made obsolescent + in F2003. */ #define GFC_STD_F95 (1<<3) /* New in F95. */ #define GFC_STD_F95_DEL (1<<2) /* Deleted in F95. */ -#define GFC_STD_F95_OBS (1<<1) /* Obsoleted in F95. */ -#define GFC_STD_F77 (1<<0) /* Up to and including F77. */ +#define GFC_STD_F95_OBS (1<<1) /* Obsolescent in F95. */ +#define GFC_STD_F77 (1<<0) /* Included in F77, but not + deleted or obsolescent in + later standards. */ /* Bitmasks for the various FPE that can be enabled. */ #define GFC_FPE_INVALID (1<<0)