* varasm.c (default_binds_local_p): Fix typo.

From-SVN: r53639
This commit is contained in:
Richard Henderson 2002-05-19 13:17:50 -07:00 committed by Richard Henderson
parent 651c5ed94a
commit 121f5c2c13
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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>
* config/avr/avr.c (machine_dependent_reorg): Sign extend the

View File

@ -5559,7 +5559,7 @@ default_binds_local_p (exp)
if (!DECL_P (exp))
local_p = true;
/* 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;
/* Otherwise, variables defined outside this object may not be local. */
else if (DECL_EXTERNAL (exp))