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 rtl-optimization/21404] wrong code for array copy in while loop


------- Additional Comments From janis at gcc dot gnu dot org  2005-05-05 17:49 -------
A workaround is to replace the body of the loop with:

{
  p[i] = q[i];
  i++;
}

-- 


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


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