This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/56161] label: jmp label bug in 4.8.0-0.7


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

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> 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 dimensional instead of two
dimensional should fix this.  Dup of PR54136 .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]