(rest_of_decl_compilation): Use ASM_FINISH_DECLARE_OBJECT.
authorRichard Stallman <rms@gnu.org>
Wed, 20 Oct 1993 19:51:14 +0000 (19:51 +0000)
committerRichard Stallman <rms@gnu.org>
Wed, 20 Oct 1993 19:51:14 +0000 (19:51 +0000)
From-SVN: r5828

gcc/toplev.c

index e7d630b6c3ddad6cfd38d8dfe99fefbd289f53be..aa0cbd4a9e29aaee9ea66773bfaadcf8f4d9f948 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)
     {