Bug 1326142 - GenerateBailoutHandler/arm64: ION_PERF Use undefined variable "code". r=bbouvier

This commit is contained in:
Denis Scott 2016-12-28 20:36:00 -05:00
Родитель 5c8692f989
Коммит 6bd1b87757
1 изменённых файлов: 5 добавлений и 3 удалений

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

@ -540,13 +540,15 @@ JitRuntime::generateBailoutHandler(JSContext* cx)
MacroAssembler masm(cx);
GenerateBailoutThunk(cx, masm, NO_FRAME_SIZE_CLASS_ID);
Linker linker(masm);
AutoFlushICache afc("BailoutHandler");
JitCode* code = linker.newCode<NoGC>(cx, OTHER_CODE);
#ifdef JS_ION_PERF
writePerfSpewerJitCodeProfile(code, "BailoutHandler");
#endif
Linker linker(masm);
AutoFlushICache afc("BailoutHandler");
return linker.newCode<NoGC>(cx, OTHER_CODE);
return code;
}
JitCode*