------- Comment #1 from rguenth at gcc dot gnu dot org 2009-02-25 14:10 ------- /* Store information about each particular bitmap. */ struct bitmap_descriptor { const char *function; const char *file; int line; int allocated; int created; int peak; int current; int nsearches; };
I guess we simply overflow current. Using HOST_WIDEST_INT for the counters would be appropriate. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39301