Commit 6588d711 by Olivier Hainque Committed by Olivier Hainque

collect2.c (main): In AIX specific computations for vector insertions...

        * collect2.c (main): In AIX specific computations for vector
        insertions, use CONST_CAST2 to cast from char ** to const char **.

From-SVN: r182836
parent f3321fd7
2012-01-03 Olivier Hainque <hainque@adacore.com>
* collect2.c (main): In AIX specific computations for vector
insertions, use CONST_CAST2 to cast from char ** to const char **.
2012-01-03 Richard Guenther <rguenther@suse.de>
PR debug/51650
......@@ -1481,11 +1481,14 @@ main (int argc, char **argv)
extra space for remaining arguments. */
if (add_nbr >= add_max)
{
int pos = object - (const char **)object_lst;
int pos =
object - CONST_CAST2 (const char **, char **,
object_lst);
add_max = (add_max == 0) ? 16 : add_max * 2;
object_lst = XRESIZEVEC (char *, object_lst,
object_nbr + add_max);
object = (const char **) object_lst + pos;
object = CONST_CAST2 (const char **, char **,
object_lst) + pos;
object_nbr += add_max;
}
*object++ = xstrdup (buf);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment