diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-23 15:39:50 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-23 15:39:50 +0000 |
commit | 46d58fa5d18f3667ae6d506a2fd08bcbf782d46f (patch) | |
tree | 8558d61563a5774f4be3abfc1b874da2ee621b4d /gcc/fortran/libgfortran.h | |
parent | 770f5885e2423d3e043869e6059113f7491e025e (diff) | |
download | gcc-46d58fa5d18f3667ae6d506a2fd08bcbf782d46f.tar.gz |
2010-02-23 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 156999
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@157006 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/libgfortran.h')
-rw-r--r-- | gcc/fortran/libgfortran.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/fortran/libgfortran.h b/gcc/fortran/libgfortran.h index d66020717a4..c39f54b19fc 100644 --- a/gcc/fortran/libgfortran.h +++ b/gcc/fortran/libgfortran.h @@ -48,9 +48,10 @@ along with GCC; see the file COPYING3. If not see #define GFC_RTCHECK_RECURSION (1<<2) #define GFC_RTCHECK_DO (1<<3) #define GFC_RTCHECK_POINTER (1<<4) +#define GFC_RTCHECK_MEM (1<<5) #define GFC_RTCHECK_ALL (GFC_RTCHECK_BOUNDS | GFC_RTCHECK_ARRAY_TEMPS \ | GFC_RTCHECK_RECURSION | GFC_RTCHECK_DO \ - | GFC_RTCHECK_POINTER) + | GFC_RTCHECK_POINTER | GFC_RTCHECK_MEM) /* Possible values for the CONVERT I/O specifier. */ |