(identify_blocks): Declare.
authorJim Wilson <wilson@gcc.gnu.org>
Tue, 11 Aug 1992 19:50:24 +0000 (12:50 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Tue, 11 Aug 1992 19:50:24 +0000 (12:50 -0700)
(rtx, tree): Move undefs to the very end.

From-SVN: r1798

gcc/function.h

index 9c6e44c1487f63f9861405021224921f8106267d..a473818f679d26ce55e068ab1b657aaa32122b5c 100644 (file)
@@ -171,6 +171,18 @@ extern rtx return_label;
    Made for the sake of unshare_all_rtl.  */
 extern rtx stack_slot_list;
 
+/* Given a function decl for a containing function,
+   return the `struct function' for it.  */
+struct function *find_function_data ();
+
+/* Pointer to chain of `struct function' for containing functions.  */
+extern struct function *outer_function_chain;
+
+/* Put all this function's BLOCK nodes into a vector and return it.
+   Also store in each NOTE for the beginning or end of a block
+   the index of that block in the vector.  */
+tree *identify_blocks ();
+
 #ifdef rtx
 #undef rtx
 #endif
@@ -178,11 +190,3 @@ extern rtx stack_slot_list;
 #ifdef tree
 #undef tree
 #endif
-
-
-/* Given a function decl for a containing function,
-   return the `struct function' for it.  */
-struct function *find_function_data ();
-
-/* Pointer to chain of `struct function' for containing functions.  */
-extern struct function *outer_function_chain;