Commit 5325296e by Ian Lance Taylor Committed by Ian Lance Taylor

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

From-SVN: r204372
parent a22449bd
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> 2013-11-04 Paul Thomas <pault@gcc.gnu.org>
PR fortran/58771 PR fortran/58771
......
...@@ -531,8 +531,9 @@ gfc_builtin_function (tree decl) ...@@ -531,8 +531,9 @@ gfc_builtin_function (tree decl)
return 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_NULL 0
#define ATTR_LEAF_LIST (ECF_LEAF)
#define ATTR_NOTHROW_LEAF_LIST (ECF_NOTHROW | 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_NOTHROW_LEAF_MALLOC_LIST (ECF_NOTHROW | ECF_LEAF | ECF_MALLOC)
#define ATTR_CONST_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF | ECF_CONST) #define ATTR_CONST_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF | ECF_CONST)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment