From: Richard Stallman Date: Fri, 23 Jul 1993 18:44:59 +0000 (+0000) Subject: (rest_of_decl_compilation): Pass 0 as DONT_OUTPUT_DATA to assemble_variable. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8380e2f2ec70c0bd568b7f6adecebf2656c14e57;p=gcc.git (rest_of_decl_compilation): Pass 0 as DONT_OUTPUT_DATA to assemble_variable. From-SVN: r4972 --- diff --git a/gcc/toplev.c b/gcc/toplev.c index dd89afbad1c..95a5f553f81 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -2173,7 +2173,7 @@ rest_of_decl_compilation (decl, asmspec, top_level, at_end) && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node || DECL_IGNORED_P (decl)))) - assemble_variable (decl, top_level, at_end); + assemble_variable (decl, top_level, at_end, 0); }); else if (DECL_REGISTER (decl) && asmspec != 0) {