OSDN Git Service

(rest_of_decl_compilation): Use ASM_FINISH_DECLARE_OBJECT.
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 Oct 1993 19:51:14 +0000 (19:51 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 Oct 1993 19:51:14 +0000 (19:51 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5828 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/toplev.c

index e7d630b..aa0cbd4 100644 (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)
     {