This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Register allocation issues
On 9/6/07, Segher Boessenkool <segher@kernel.crashing.org> wrote:
> > load r3, q + 0
> > load r4, q + 4
> > store r3, p + 0
> > store r4, p + 4
> > load r3, q + 4
> > load r4, q + 8
> > store r3, p + 4
> > store r4, p + 8
>
> These last four lines should be
>
> load r3, q + 8
> load r4, q + 12
> store r3, p + 8
> store r4, p + 12
>
>
> Did you just typo it or do you have a bigger problem? The
> problems might even be connected, who knows :-)
>
Sorry, that was a typo.