On Sun, Apr 16, 2000 at 01:11:21PM -0700, Richard Henderson wrote:
> It sure appears to be a gcc problem.  I'll look into it.
> 

I don't know is it related bug or no, but the example below
prints "0" if compiled without BWX.
The bug still present in the 20000417 snapshot.

Ivan.


void foo(void * aaa)
{
}

int main()
{
        short tst[4] = { 1,2,3,4 };

        foo(tst);
        printf("%d\n", tst[3]);
        return 0;
}

Reply via email to