Christophe Jaillet wrote:
In loop.c, around line 8887, shouldn't the memory allocated by alloca be
'memseted' in some way ?
Look closer, and you will see that only array values that are set are used.
--
Jim Wilson, GNU Tools Support, http://www.SpecifixInc.com
In loop.c, around line 8887, shouldn't the memory allocated by alloca be
'memseted' in some way ?
giv_array = alloca (giv_count * sizeof (struct induction *));
There is a loop just below that set some elements but not all.
But a few lines below again, ALL values of giv_array are used. I think th