Bug 1166037 - Follow-up - Revert SimulatorType to Simulator. no_r=me

This commit is contained in:
Sean Stangl 2015-06-10 15:33:21 -07:00
Родитель fb9e5c1934
Коммит dc50e12fdd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1573,7 +1573,7 @@ jit::BailoutIonToBaseline(JSContext* cx, JitActivation* activation, JitFrameIter
BaselineBailoutInfo *info = builder.info();
uint8_t* newsp = info->incomingStack - (info->copyStackTop - info->copyStackBottom);
#if defined(JS_ARM_SIMULATOR) || defined(JS_ARM64_SIMULATOR) || defined(JS_MIPS_SIMULATOR)
if (SimulatorType::Current()->overRecursed(uintptr_t(newsp)))
if (Simulator::Current()->overRecursed(uintptr_t(newsp)))
overRecursed = true;
#else
JS_CHECK_RECURSION_WITH_SP_DONT_REPORT(cx, newsp, overRecursed = true);