Skip to content
Snippets Groups Projects
Commit 902ebcc2 authored by Ian-Woo Kim's avatar Ian-Woo Kim Committed by Marge Bot
Browse files

Add missing BCO handling in scavenge_one.

parent 5d3f7862
No related branches found
No related tags found
No related merge requests found
......@@ -1594,6 +1594,14 @@ scavenge_one(StgPtr p)
#endif
break;
case BCO: {
StgBCO *bco = (StgBCO *)p;
evacuate((StgClosure **)&bco->instrs);
evacuate((StgClosure **)&bco->literals);
evacuate((StgClosure **)&bco->ptrs);
break;
}
case COMPACT_NFDATA:
scavenge_compact((StgCompactNFData*)p);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment