aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-08-08 18:31:42 +0000
committerRichard Stallman <rms@gnu.org>1993-08-08 18:31:42 +0000
commit5b272d50fa6c2262ed339dce9bf778697a8b60a5 (patch)
tree6971285379e3351e2620663aecfbbe1e62b104ed
parent34d6bae3ee52ad4f91db7cee05fe3e244f3098f0 (diff)
downloadgcc-5b272d50fa6c2262ed339dce9bf778697a8b60a5.zip
gcc-5b272d50fa6c2262ed339dce9bf778697a8b60a5.tar.gz
gcc-5b272d50fa6c2262ed339dce9bf778697a8b60a5.tar.bz2
(rest_of_decl_compilation): Fix typo in previous change.
From-SVN: r5107
-rw-r--r--gcc/toplev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 4d2c42b..505112c 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. */