Updated powerpc build to disable stack overflow checks for now due to a problem we found with large enums.

This commit is contained in:
Mike Keesey 2011-04-22 20:22:47 -06:00
parent d3581be38e
commit 8e736327d4

View File

@ -2423,16 +2423,16 @@ class MyAssembler: public Assembler {
return arch_;
}
virtual void checkStackOverflow(uintptr_t handler,
unsigned stackLimitOffsetFromThread)
virtual void checkStackOverflow(uintptr_t /*handler*/,
unsigned /*stackLimitOffsetFromThread*/)
{
Register stack(StackRegister);
/*Register stack(StackRegister);
Memory stackLimit(ThreadRegister, stackLimitOffsetFromThread);
Constant handlerConstant
(new (c.zone->allocate(sizeof(ResolvedPromise)))
ResolvedPromise(handler));
branchRM(&c, JumpIfGreaterOrEqual, BytesPerWord, &stack, &stackLimit,
&handlerConstant);
&handlerConstant);*/
}
virtual void saveFrame(unsigned stackOffset, unsigned) {