Richard Guenther writes:
> On 3/21/06, Andrew Pinski <[EMAIL PROTECTED]> wrote:
> > Take the following C code:
> > typedef long atype[];
> > typedef long atype1[];
> >
> > int NumSift (atype *a, atype1 *a1)
> > {
> >(*a)[0] = 0;
> >(*a1)[0] = 1;
> >return (*a)[0];
> > }
> >
On 3/21/06, Andrew Pinski <[EMAIL PROTECTED]> wrote:
> Take the following C code:
> typedef long atype[];
> typedef long atype1[];
>
> int NumSift (atype *a, atype1 *a1)
> {
>(*a)[0] = 0;
>(*a1)[0] = 1;
>return (*a)[0];
> }
> Shouldn't the aliasing set for the type atype be the same as