diff options
author | Richard Stallman <rms@gnu.org> | 1993-07-23 18:44:59 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-07-23 18:44:59 +0000 |
commit | 8380e2f2ec70c0bd568b7f6adecebf2656c14e57 (patch) | |
tree | bce35d0d56f86fded4da59e7c95c5059af0173d8 | |
parent | 1df80ae41537e12059b827efb98c1154a592bcd1 (diff) | |
download | gcc-8380e2f2ec70c0bd568b7f6adecebf2656c14e57.zip gcc-8380e2f2ec70c0bd568b7f6adecebf2656c14e57.tar.gz gcc-8380e2f2ec70c0bd568b7f6adecebf2656c14e57.tar.bz2 |
(rest_of_decl_compilation): Pass 0 as DONT_OUTPUT_DATA to assemble_variable.
From-SVN: r4972
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index dd89afb..95a5f55 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) { |