Don't use post-increment on structure copy to work around a ppc gcc bug.
authorAlan Modra <amodra@gmail.com>
Fri, 31 Mar 2000 02:57:38 +0000 (02:57 +0000)
committerAlan Modra <amodra@gmail.com>
Fri, 31 Mar 2000 02:57:38 +0000 (02:57 +0000)
gprof/ChangeLog
gprof/symtab.c

index 8be42e9..c4742ff 100644 (file)
@@ -1,3 +1,8 @@
+2000-03-31  Alan Modra  <alan@linuxcare.com.au>
+
+       * symtab.c (symtab_finalize): Don't use post-increment on
+       structure copy to work around a ppc gcc bug.
+
 1999-09-29  Mark Kettenis  <kettenis@gnu.org>
 
         * hertz.h [MACH] (hertz): Remove macro.  The
index 53b261a..e4fda46 100644 (file)
@@ -132,7 +132,8 @@ DEFUN (symtab_finalize, (tab), Sym_Table * tab)
          /* retain sym only if it has a non-empty address range: */
          if (!src->end_addr || src->addr <= src->end_addr)
            {
-             *dst++ = *src;
+             *dst = *src;
+             dst++;
              prev_addr = src->addr;
            }
        }