(rest_of_decl_compilation): Use ASM_FINISH_DECLARE_OBJECT.

From-SVN: r5828
This commit is contained in:
Richard Stallman 1993-10-20 19:51:14 +00:00
parent dcc8e5e66d
commit b0316e35ed
1 changed files with 9 additions and 0 deletions

View File

@ -86,6 +86,11 @@ extern char **environ;
#endif
extern char *version_string, *language_string;
/* Carry information from ASM_DECLARE_OBJECT_NAME
to ASM_FINISH_DECLARE_OBJECT. */
extern int size_directive_output;
extern void init_lex ();
extern void init_decl_processing ();
extern void init_obstacks ();
@ -2234,6 +2239,10 @@ rest_of_decl_compilation (decl, asmspec, top_level, at_end)
&& (DECL_INITIAL (decl) == 0
|| DECL_INITIAL (decl) == error_mark_node)))
assemble_variable (decl, top_level, at_end, 0);
#ifdef ASM_FINISH_DECLARE_OBJECT
ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
top_level, at_end);
#endif
});
else if (DECL_REGISTER (decl) && asmspec != 0)
{