This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH PR64434]


On Wed, Jan 14, 2015 at 2:33 PM, Jakub Jelinek <jakub@redhat.com> wrote:
> On Wed, Jan 14, 2015 at 04:28:42PM +0300, Yuri Rumyantsev wrote:
>> Hi All,
>>
>> I did all changes proposed by Richard and delete check on def in the
>> same block as Jakub proposed.
>> I also moved check  on optimization to call site..
>>
>> I also checked that bootstrap and regression testing did not show any
>> new failures.
>>
>> Is it OK for trunk?
>
> The  | SSA_OP_VUSE is still in there, the testcase is still executable,
> still doesn't end with newline, and I really think you should replace
>   lattice = XALLOCAVEC (unsigned int, n);
> with something like:
>   if (n >= 100000)
>     lattice = XNEWVEC (unsigned int, n);
>   else
>     lattice = XALLOCAVEC (unsigned int, n);
> ...
>   if (n >= 100000)
>     XDELETE (lattice);
> or similar.

Just unconditionally allocate from the heap.

Richard.

>
>         Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]