]> gcc.gnu.org Git - gcc.git/commitdiff
tree.h: Move documentation for tree_function_decl to tree-core.h with the declaration.
authorMike Stump <mikestump@comcast.net>
Thu, 5 Sep 2013 14:52:50 +0000 (14:52 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Thu, 5 Sep 2013 14:52:50 +0000 (14:52 +0000)
* tree.h: Move documentation for tree_function_decl to tree-core.h
with the declaration.

From-SVN: r202289

gcc/ChangeLog
gcc/tree-core.h
gcc/tree.h

index c6d9c010033f694df948f3aaf77ab21051921e9f..8aec62f724ebbb7b86c0db4e5412d0dc97a5e8c3 100644 (file)
@@ -1,3 +1,8 @@
+2013-09-05  Mike Stump  <mikestump@comcast.net>
+
+       * tree.h: Move documentation for tree_function_decl to tree-core.h
+       with the declaration.
+
 2013-09-05  Peter Bergner  <bergner@vnet.ibm.com>
 
        PR target/58139
index 57d5e9c681738d2ed61d2dacc87eda927c46e0ef..b1bc56ae29f40f1592e843064a3219247922523a 100644 (file)
@@ -1328,6 +1328,11 @@ struct GTY(()) tree_decl_non_common {
   tree vindex;
 };
 
+/* FUNCTION_DECL inherits from DECL_NON_COMMON because of the use of the
+   arguments/result/saved_tree fields by front ends.   It was either inherit
+   FUNCTION_DECL from non_common, or inherit non_common from FUNCTION_DECL,
+   which seemed a bit strange.  */
+
 struct GTY(()) tree_function_decl {
   struct tree_decl_non_common common;
 
index 2d11aa30173f551651b0771e911aa1726988dce3..7c1f57b829b1ee7261cda8207db037046cc626d5 100644 (file)
@@ -2543,11 +2543,6 @@ extern vec<tree, va_gc> **decl_debug_args_insert (tree);
 #define DECL_FINAL_P(NODE)\
    (FUNCTION_DECL_CHECK (NODE)->decl_with_vis.final)
 
-/* FUNCTION_DECL inherits from DECL_NON_COMMON because of the use of the
-   arguments/result/saved_tree fields by front ends.   It was either inherit
-   FUNCTION_DECL from non_common, or inherit non_common from FUNCTION_DECL,
-   which seemed a bit strange.  */
-
 /* The source language of the translation-unit.  */
 #define TRANSLATION_UNIT_LANGUAGE(NODE) \
   (TRANSLATION_UNIT_DECL_CHECK (NODE)->translation_unit_decl.language)
This page took 0.08752 seconds and 5 git commands to generate.