* f95-lang.c (ATTR_LEAF_LIST): Define.
authorIan Lance Taylor <iant@google.com>
Mon, 4 Nov 2013 22:08:56 +0000 (22:08 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Mon, 4 Nov 2013 22:08:56 +0000 (22:08 +0000)
From-SVN: r204372

gcc/fortran/ChangeLog
gcc/fortran/f95-lang.c

index d1934a28e809850e67877fe66f3b48d0a6eff681..32b8c11061e8ecc4aeccc929c5fa3b8153a12629 100644 (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
index 873c137e58176aa1467d2c90c67a00135f0a3ccd..a70d60d6882a6024886fdbc78fdd8f451c98a6c5 100644 (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)