diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-08-08 18:31:42 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-08-08 18:31:42 +0000 |
commit | b9f41229f71d0ff755939345422525cbf406aa89 (patch) | |
tree | 6971285379e3351e2620663aecfbbe1e62b104ed /gcc/toplev.c | |
parent | 73ecff204d1714dbf8c335df68e8dd2a460fbce0 (diff) | |
download | gcc-b9f41229f71d0ff755939345422525cbf406aa89.tar.gz |
(rest_of_decl_compilation): Fix typo in previous change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5107 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-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 4d2c42b2f2d..505112cc9c9 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -2169,7 +2169,7 @@ rest_of_decl_compilation (decl, asmspec, top_level, at_end) if (! (TREE_CODE (decl) == VAR_DECL && DECL_EXTERNAL (decl) && TREE_READONLY (decl) && DECL_INITIAL (decl) != 0 - && DECL_INITIAL (decl) != error_mark_node) + && DECL_INITIAL (decl) != error_mark_node)) /* Don't output anything when a tentative file-scope definition is seen. But at end of compilation, do output code for them. */ |