http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56161
--- Comment #3 from Sami Farin 2013-01-31
12:13:46 UTC ---
Yes that array access was evil, but I didn't know this kind of things can
happen :)
Hmm seems Venkataramanan forgot to notify dcraw maintainer.. I'll do it now.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56161
--- Comment #2 from Jakub Jelinek 2013-01-31
12:02:51 UTC ---
Using:
double *cam_xyzp = (double *) &cam_xyz[0][0];
before the loop and using cam_xyzp[j] instead of cam_xyz[0][j]
or using cam_xyz[j/3][j%3] or making cam_xyz one dimension
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56161
Jakub Jelinek changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
CC|