|
From: <sv...@va...> - 2009-02-21 16:12:29
|
Author: bart
Date: 2009-02-21 16:12:20 +0000 (Sat, 21 Feb 2009)
New Revision: 9212
Log:
VG_(OSetGen_ResetIterAt)() now also works for OSet's that do not have an
explicit comparison function.
Modified:
trunk/coregrind/m_oset.c
Modified: trunk/coregrind/m_oset.c
===================================================================
--- trunk/coregrind/m_oset.c 2009-02-21 15:27:04 UTC (rev 9211)
+++ trunk/coregrind/m_oset.c 2009-02-21 16:12:20 UTC (rev 9212)
@@ -808,9 +808,6 @@
if (oset->cmp) {
cmpresS = (Word)slow_cmp(oset, k, t);
} else {
- /* this is believed to be correct, but really needs testing
- before the assertion is removed. */
- vg_assert(0);
cmpresS = fast_cmp(k, t);
}
|