diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-15 06:48:43 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-15 06:48:43 +0000 |
commit | 14267e36f6aef0330adbfd1284d3dba3802f5088 (patch) | |
tree | 15a484128350682413b56480efa305ed7f014bf7 /libgfortran/libgfortran.h | |
parent | 4734edf4bda88edf99bba3319ce2c88ce6daecb0 (diff) | |
download | gcc-14267e36f6aef0330adbfd1284d3dba3802f5088.tar.gz |
2010-03-15 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 157452
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@157453 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/libgfortran.h')
-rw-r--r-- | libgfortran/libgfortran.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h index 8d1fa4dfec1..6e47a25b22c 100644 --- a/libgfortran/libgfortran.h +++ b/libgfortran/libgfortran.h @@ -586,7 +586,7 @@ st_option; that were given (-std=, -pedantic) we should issue an error, a warning or nothing. */ typedef enum -{ SILENT, WARNING, ERROR } +{ NOTIFICATION_SILENT, NOTIFICATION_WARNING, NOTIFICATION_ERROR } notification; /* This is returned by notify_std and several io functions. */ @@ -701,6 +701,8 @@ internal_proto(show_backtrace); #if defined(HAVE_GFC_REAL_16) #define GFC_LARGEST_BUF (sizeof (GFC_REAL_16)) +#elif defined(HAVE_GFC_INTEGER_16) +#define GFC_LARGEST_BUF (sizeof (GFC_INTEGER_LARGEST)) #elif defined(HAVE_GFC_REAL_10) #define GFC_LARGEST_BUF (sizeof (GFC_REAL_10)) #else |