Commit 121f5c2c by Richard Henderson Committed by Richard Henderson

* varasm.c (default_binds_local_p): Fix typo.

From-SVN: r53639
parent 651c5ed9
2002-05-19 Richard Henderson <rth@redhat.com>
* varasm.c (default_binds_local_p): Fix typo.
2002-05-19 Marek Michalkiewicz <marekm@amelek.gda.pl> 2002-05-19 Marek Michalkiewicz <marekm@amelek.gda.pl>
* config/avr/avr.c (machine_dependent_reorg): Sign extend the * config/avr/avr.c (machine_dependent_reorg): Sign extend the
......
...@@ -5559,7 +5559,7 @@ default_binds_local_p (exp) ...@@ -5559,7 +5559,7 @@ default_binds_local_p (exp)
if (!DECL_P (exp)) if (!DECL_P (exp))
local_p = true; local_p = true;
/* A variable is considered "local" if it is defined by this module. */ /* A variable is considered "local" if it is defined by this module. */
if (MODULE_LOCAL_P (exp)) else if (MODULE_LOCAL_P (exp))
local_p = true; local_p = true;
/* Otherwise, variables defined outside this object may not be local. */ /* Otherwise, variables defined outside this object may not be local. */
else if (DECL_EXTERNAL (exp)) else if (DECL_EXTERNAL (exp))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment