Re: [Q] initialisation of variable allocated wirh alloca in 'loop.c'

2005-02-14 Thread James E Wilson
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

[Q] initialisation of variable allocated wirh alloca in 'loop.c'

2005-02-13 Thread Christophe Jaillet
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