--- Comment #6 from sebpop at gmail dot com 2009-03-19 02:53 ---
Subject: Re: autopar fails to parallel
> What |Removed |Added
>
> Component|middle-end
--- Comment #5 from sebpop at gmail dot com 2009-03-19 02:52 ---
Subject: Re: autopar fails to parallel
On Wed, Mar 18, 2009 at 20:46, nemokingdom at gmail dot com
wrote:
> I add test case for this situation.
>
Yes, indeed this is a good idea.
Thanks for the testcase,
Sebastian
--
--- Comment #4 from nemokingdom at gmail dot com 2009-03-19 02:46 ---
(In reply to comment #3)
> I will take care of this one.
>
I add test case for this situation.
Index: testsuite/gcc.dg/autopar/pr39500-1.c
===
--- tests
--- Comment #3 from spop at gcc dot gnu dot org 2009-03-19 02:07 ---
I will take care of this one.
--
spop at gcc dot gnu dot org changed:
What|Removed |Added
Ass
--- Comment #2 from spop at gcc dot gnu dot org 2009-03-19 02:06 ---
The patch looks good. I'm bootstrapping and testing it, and then I will apply
it to trunk.
Thanks,
Sebastian
--
spop at gcc dot gnu dot org changed:
What|Removed |Added
--- Comment #1 from nemokingdom at gmail dot com 2009-03-19 01:27 ---
(In reply to comment #0)
> autopar fails auto-parallelization with the code below:
>
> int X[1000];
>
> int main(void)
> {
> int i;
>
> for (i = 0; i < 100; i++)
> X[i] = X[i+100];
>
> return 0;
> }
>