summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1993-07-23 18:44:59 +0000
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1993-07-23 18:44:59 +0000
commitd13c227bc5ab8c3cd6920119bd15abdbc9a70a93 (patch)
treebce35d0d56f86fded4da59e7c95c5059af0173d8 /gcc/toplev.c
parentd77e9efa50cb5d54a336839aa50829a3514b4d5f (diff)
downloadgcc-d13c227bc5ab8c3cd6920119bd15abdbc9a70a93.tar.gz
(rest_of_decl_compilation): Pass 0 as DONT_OUTPUT_DATA to assemble_variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4972 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c2
1 files changed, 1 insertions, 1 deletions
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)
{