Bug 1141921 - OdinMonkey: MIPS: Fix callJitFromAsmJS to push return address. r=nbp

This commit is contained in:
Heiher 2015-03-19 03:29:00 -04:00
Родитель 55e31ac559
Коммит 2d0e7d7bf2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1220,7 +1220,7 @@ public:
// Makes a call using the only two methods that it is sane for indep code
// to make a call.
void callJit(Register callee);
void callJitFromAsmJS(Register callee) { call(callee); }
void callJitFromAsmJS(Register callee) { callJit(callee); }
void reserveStack(uint32_t amount);
void freeStack(uint32_t amount);