Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 414297 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +2 lines)
Line  Link Here
0
-- a/js/src/gc/RootMarking.cpp
0
++ b/js/src/gc/RootMarking.cpp
Lines 314-320 Link Here
314
314
315
    uintptr_t *stackMin, *stackEnd;
315
    uintptr_t *stackMin, *stackEnd;
316
#if JS_STACK_GROWTH_DIRECTION > 0
316
#if JS_STACK_GROWTH_DIRECTION > 0
317
    stackMin = rt->nativeStackBase;
317
    stackMin = reinterpret_cast<uintptr_t *>(rt->nativeStackBase);
318
    stackEnd = cgcd->nativeStackTop;
318
    stackEnd = cgcd->nativeStackTop;
319
#else
319
#else
320
    stackMin = cgcd->nativeStackTop + 1;
320
    stackMin = cgcd->nativeStackTop + 1;

Return to bug 414297