From: Jim Wilson Date: Tue, 11 Aug 1992 19:50:24 +0000 (-0700) Subject: (identify_blocks): Declare. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ba534a45c7c54378a96328b634cd5e0a1fa8ca9a;p=gcc.git (identify_blocks): Declare. (rtx, tree): Move undefs to the very end. From-SVN: r1798 --- diff --git a/gcc/function.h b/gcc/function.h index 9c6e44c1487..a473818f679 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -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;