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 bootstrap/13735] avr-elf ICE while building libgcc


------- Additional Comments From kazu at cs dot umass dot edu  2004-01-19 15:44 -------
Reduced to:

unsigned long long
foo (unsigned long n0,
     unsigned long long n,
     unsigned long a __attribute__((unused)),
     unsigned long b __attribute__((unused)),
     unsigned long long *rp,
     unsigned long bm)
{
  unsigned long n1 = bm ? n0 : 0;
  unsigned long q0 = n1 / n0;

  n0 = (long) n;

  *rp = (long) n0 >> bm;

  return (long) q0;
}

-- 


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


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