Bug 1301400: Baseline Wasm Compiler: Part 6: Implement PopI64, r=lth

This commit is contained in:
h4writer 2016-09-29 22:33:22 +02:00
parent bbd48f090f
commit ea9d7347f9

View File

@ -1404,7 +1404,8 @@ class BaseCompiler
#ifdef JS_PUNBOX64
masm.Pop(r.reg.reg);
#else
MOZ_CRASH("BaseCompiler platform hook: popI64");
masm.Pop(r.reg.low);
masm.Pop(r.reg.high);
#endif
break;
case Stk::RegisterI64: