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 (-4 / +4 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;
321
-- a/xpcom/reflect/xptcall/src/md/unix/xptcstubs_pa32.cpp
321
++ b/xpcom/reflect/xptcall/src/md/unix/xptcstubs_pa32.cpp
Lines 124-130 Link Here
124
  return result;
124
  return result;
125
}
125
}
126
126
127
extern "C" int SharedStub(int);
127
extern "C" nsresult SharedStub(int);
128
128
129
#define STUB_ENTRY(n)       \
129
#define STUB_ENTRY(n)       \
130
nsresult nsXPTCStubBase::Stub##n()  \
130
nsresult nsXPTCStubBase::Stub##n()  \

Return to bug 414297