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/37263] [4.3/4.4 Regression] extra code for doloop with unsigned 32bit types on LP64



------- Comment #3 from pinskia at gcc dot gnu dot org  2008-09-15 21:25 -------
Another testcase (which cannot be solved via subreg fix):
int f(int l, int *a)
{
  int i;
  if (l > 128)
  for(i = 0;i < l; i++)
    a[i] = i;
  return l;
}


-- 


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


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