* varasm.c (default_binds_local_p): Fix typo.
authorRichard Henderson <rth@redhat.com>
Sun, 19 May 2002 20:17:50 +0000 (13:17 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Sun, 19 May 2002 20:17:50 +0000 (13:17 -0700)
From-SVN: r53639

gcc/ChangeLog
gcc/varasm.c

index 75fdf278e53fc9a2231e73563a6a9e31ee7edbab..8e6cf96b7fbdff4165e27afa2ae861f14e126d3e 100644 (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
index 6d7732dc2f856027358cef669287568c8c708efc..47e652e25ea073471affee1452844ac031cdd453 100644 (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))