]> gcc.gnu.org Git - gcc.git/commitdiff
rs6000.c (rs6000_gen_section_name): Do not include file extension in section name.
authorDavid Edelsohn <edelsohn@gnu.org>
Wed, 15 Jan 2003 16:08:49 +0000 (16:08 +0000)
committerDavid Edelsohn <dje@gcc.gnu.org>
Wed, 15 Jan 2003 16:08:49 +0000 (11:08 -0500)
        * config/rs6000/rs6000.c (rs6000_gen_section_name): Do not include
        file extension in section name.

From-SVN: r61334

gcc/ChangeLog
gcc/config/rs6000/rs6000.c

index e9c5d2cab64a9ef6e52711609a0773e8dc94c99e..ec32d195f509e6fd0a4ba65ef347111747ea23c9 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-15  David Edelsohn  <edelsohn@gnu.org>
+
+       * config/rs6000/rs6000.c (rs6000_gen_section_name): Do not include
+       file extension in section name.
+
 2003-01-15  Richard Earnshaw  <rearnsha@arm.com>
 
        * flow.c (find_auto_inc): Also try to generate a PRE_MODIFY with
index fdf73ac57065f4d4259ffe1b249e2a1509739e20..03a4b6b574251b40bd8eec8893e5481f3ac05ac2 100644 (file)
@@ -1681,6 +1681,8 @@ mask64_operand (op, mode)
 
       /* Find the transition, and check that all bits above are 1's.  */
       lsb = c & -c;
+
+      /* Match if all the bits above are 1's (or c is zero).  */
       return c == -lsb;
     }
   return 0;
@@ -12008,6 +12010,7 @@ rs6000_gen_section_name (buf, filename, section_desc)
         {
          strcpy (p, section_desc);
          p += strlen (section_desc);
+         break;
         }
 
       else if (ISALNUM (*q))
This page took 0.103908 seconds and 5 git commands to generate.