------- Comment #2 from rguenth at gcc dot gnu dot org  2009-11-01 21:00 -------
It works with

int * __restrict__ a;
int * __restrict__ b;

extern void link_error (void);

int main()
{
  a[0] = 0;
  b[0] = 1;
  if (a[0] != 0)
    link_error ();
  return 0;
}


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rguenth at gcc dot gnu dot
                   |                            |org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41898

Reply via email to