diff options
author | Richard Stallman <rms@gnu.org> | 1992-09-01 20:32:43 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-09-01 20:32:43 +0000 |
commit | 69b78d8d12b43817cb6f4d1e02e487c3b370ed43 (patch) | |
tree | e0a3598541d3c16fbd589f25ae9735cc159da0b0 | |
parent | c4d990db04098a51f92128dd7eaac3298b5cb95f (diff) | |
download | gcc-69b78d8d12b43817cb6f4d1e02e487c3b370ed43.zip gcc-69b78d8d12b43817cb6f4d1e02e487c3b370ed43.tar.gz gcc-69b78d8d12b43817cb6f4d1e02e487c3b370ed43.tar.bz2 |
(current_block): Decl deleted.
(set_block): Declared.
From-SVN: r2017
-rw-r--r-- | gcc/tree.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -573,7 +573,6 @@ struct tree_type #else enum machine_mode mode : 8; #endif - unsigned char align; unsigned char precision; unsigned no_force_blk_flag : 1; @@ -585,6 +584,7 @@ struct tree_type unsigned lang_flag_5 : 1; unsigned lang_flag_6 : 1; + unsigned int align; union tree_node *pointer_to; union tree_node *reference_to; int parse_info; @@ -1408,8 +1408,8 @@ extern void pushlevel PROTO((int)); REVERSE -- reverse the order of decls before returning them. FUNCTIONBODY -- nonzero if this level is the body of a function. */ extern tree poplevel PROTO((int, int, int)); -/* Return the BLOCK node for the current scope level. */ -extern tree current_block PROTO((void)); +/* Set the BLOCK node for the current scope level. */ +extern void set_block PROTO((tree)); /* Function to add a decl to the current scope level. Takes one argument, a decl to add. Returns that decl, or, if the same symbol is already declared, may |