diff options
Diffstat (limited to 'boehm-gc/backgraph.c')
-rw-r--r-- | boehm-gc/backgraph.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/boehm-gc/backgraph.c b/boehm-gc/backgraph.c index 01ab738..0fe1c8f 100644 --- a/boehm-gc/backgraph.c +++ b/boehm-gc/backgraph.c @@ -307,6 +307,7 @@ static void add_back_edges(ptr_t p, word n_words, word gc_descr) } while (currentp < (word *)(p + gc_descr)) { word current = *currentp++; + FIXUP_POINTER(current); if (current >= (word)GC_least_plausible_heap_addr && current <= (word)GC_greatest_plausible_heap_addr) { ptr_t target = GC_base((GC_PTR)current); |