Correct the "can see anything new" check.

I had the super-set and sub-set parameters backwards, but that's because I
had misinterpreted the old code.
This commit is contained in:
Bill Currie 2013-03-07 14:24:30 +09:00
parent cb025838aa
commit 281c5f185d

View file

@ -243,7 +243,7 @@ RecursiveClusterFlow (int clusternum, threaddata_t *thread, pstack_t *prevstack)
}
set_assign (might, prevstack->mightsee);
set_intersection (might, test);
more = !set_is_subset (might, vis);
more = !set_is_subset (vis, might);
if (!more) // can't see anything new
continue;