diff options
author | austern <austern@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-19 05:39:06 +0000 |
---|---|---|
committer | austern <austern@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-19 05:39:06 +0000 |
commit | d3ea5d40d21ab21ee8fd8535f3ab1063db800b0a (patch) | |
tree | 7e08f1322b9d5b1d9d1838dc1d6c7f36cc47d1bc /gcc/langhooks.c | |
parent | 5b145e0c42451e7245048bc1228227f64c7b5224 (diff) | |
download | gcc-d3ea5d40d21ab21ee8fd8535f3ab1063db800b0a.tar.gz |
* toplev.c, langhooks.c, langhooks-def.h: Move
write_global_declarations from toplev.c to langhooks.c.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63094 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r-- | gcc/langhooks.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 912d5db7455..045a5e4bebd 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -448,3 +448,32 @@ lhd_expr_size (exp) else return size_in_bytes (TREE_TYPE (exp)); } + +/* lang_hooks.decls.final_write_globals: perform final processing on + global variables. */ +void +write_global_declarations () +{ + /* Really define vars that have had only a tentative definition. + Really output inline functions that must actually be callable + and have not been output so far. */ + + tree globals = (*lang_hooks.decls.getdecls) (); + int len = list_length (globals); + tree *vec = (tree *) xmalloc (sizeof (tree) * len); + int i; + tree decl; + + /* Process the decls in reverse order--earliest first. + Put them into VEC from back to front, then take out from front. */ + + for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl)) + vec[len - i - 1] = decl; + + wrapup_global_declarations (vec, len); + + check_global_declarations (vec, len); + + /* Clean up. */ + free (vec); +} |