diff options
author | Sebastian Geerken <devnull@localhost> | 2014-02-18 12:20:30 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-02-18 12:20:30 +0100 |
commit | 7b45e62eba47fcbfe66e66b41af7aa0af0366e3e (patch) | |
tree | 370291c1372a95313f5fcbbfcedcce61c612c849 /dw/outofflowmgr.cc | |
parent | bbfd0856a991709f3f92e8ab3984068a487ac261 (diff) |
RTFL.
Diffstat (limited to 'dw/outofflowmgr.cc')
-rw-r--r-- | dw/outofflowmgr.cc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/dw/outofflowmgr.cc b/dw/outofflowmgr.cc index 48aa73a0..84b94996 100644 --- a/dw/outofflowmgr.cc +++ b/dw/outofflowmgr.cc @@ -294,11 +294,12 @@ int OutOfFlowMgr::SortedFloatsVector::findFirst (Textblock *textblock, assert (last < size()); int i = find (textblock, y, 0, last); - //printf ("[%p] FIND (%s, %p, allocated: %s, %d, %p, %d) => last = %d, " - // "result = %d (of %d)\n", oofm->containingBlock, - // type == GB ? "GB" : "CB", textblock, - // oofm->wasAllocated (textblock) ? "true" : "false", y, lastGB, - // lastExtIndex, last, i, size()); + DBG_OBJ_MSGF_O ("border", 1, oofm, + "find (%s, %p, allocated: %s, %d, %p, %d) => last = %d, " + "result = %d (of %d)\n", + type == GB ? "GB" : "CB", textblock, + oofm->wasAllocated (textblock) ? "true" : "false", y, lastGB, + lastExtIndex, last, i, size()); // Note: The smallest value of "i" is 0, which means that "y" is before or // equal to the first float. The largest value is "last + 1", which means |