* varasm.c (default_binds_local_p): Fix typo.
From-SVN: r53639
This commit is contained in:
parent
651c5ed94a
commit
121f5c2c13
@ -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
|
||||
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user