On Tue 01 Jul 2014 08:14:46 Chen Gang wrote: sim patches only go to gdb-patches, so don't include cgen/binutils in the future please > --- a/sim/microblaze/interp.c > +++ b/sim/microblaze/interp.c > > if (len > (int) sizeof (unsigned long)) > printf ("That operation is not available on integers of more than " > - "%d bytes.", sizeof (unsigned long)); > + "%ld bytes.", sizeof (unsigned long)); unfortunately, i don't believe this is correct. pretty sure the right answer is %zu as sizeof() is a size_t. -mike