~bkerensa/ubuntu/raring/valgrind/merge-from-deb

« back to all changes in this revision

Viewing changes to callgrind/bb.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-11-16 17:56:30 UTC
  • mfrom: (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20061116175630-hatkgajb0twz0upw
Tags: upstream-3.2.1
Import upstream version 3.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
306
306
        CLG_DEBUG(3, "  delete_bb (Obj %s, off %p): NOT FOUND\n",
307
307
                  obj->name, offset);
308
308
 
309
 
        /* we didn't find it.  That's strange. */
 
309
        /* we didn't find it.
 
310
         * this happens when callgrinds instrumentation mode
 
311
         * was off at BB translation time, ie. no BB was created.
 
312
         */
310
313
        return;
311
314
    }
312
315
 
334
337
            + (bb->cjmp_count+1) * sizeof(CJmpInfo);
335
338
        VG_(memset)( bb, 0xAA, size );
336
339
        CLG_FREE(bb);
 
340
        return;
337
341
    }
338
342
    CLG_DEBUG(3, "  delete_bb: BB in use, can not free!\n");
339
343
}