* f95-lang.c (ATTR_LEAF_LIST): Define.

From-SVN: r204372
This commit is contained in:
Ian Lance Taylor 2013-11-04 22:08:56 +00:00 committed by Ian Lance Taylor
parent a22449bd7d
commit 5325296e80
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-11-04 Ian Lance Taylor <iant@google.com>
* f95-lang.c (ATTR_LEAF_LIST): Define.
2013-11-04 Paul Thomas <pault@gcc.gnu.org>
PR fortran/58771

View File

@ -531,8 +531,9 @@ gfc_builtin_function (tree decl)
return decl;
}
/* So far we need just these 6 attribute types. */
/* So far we need just these 7 attribute types. */
#define ATTR_NULL 0
#define ATTR_LEAF_LIST (ECF_LEAF)
#define ATTR_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF)
#define ATTR_NOTHROW_LEAF_MALLOC_LIST (ECF_NOTHROW | ECF_LEAF | ECF_MALLOC)
#define ATTR_CONST_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF | ECF_CONST)