------- Comment #3 from pinskia at gcc dot gnu dot org  2006-04-23 20:49 -------
*(pointer_yn)[0][6]

is different from:
(*pointer_yn)[0][6]

In fact the first one is equivalant to:
pointer_yn[0][6][0]

While the second one is equivalant to:
pointer_yn[0][0][6]

so you are running into different ordering of array references.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |INVALID


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

Reply via email to