diff --git a/js/src/jit/mips-shared/Lowering-mips-shared.cpp b/js/src/jit/mips-shared/Lowering-mips-shared.cpp index ce86d75133e3..cb5bda8316b5 100644 --- a/js/src/jit/mips-shared/Lowering-mips-shared.cpp +++ b/js/src/jit/mips-shared/Lowering-mips-shared.cpp @@ -208,14 +208,14 @@ void LIRGeneratorMIPSShared::lowerWasmBuiltinTruncateToInt32( if (opd->type() == MIRType::Double) { define(new (alloc()) LWasmBuiltinTruncateDToInt32( - useRegister(opd), useFixed(ins->tls(), InstanceReg), + useRegister(opd), useFixed(ins->instance(), InstanceReg), LDefinition::BogusTemp()), ins); return; } define(new (alloc()) LWasmBuiltinTruncateFToInt32( - useRegister(opd), useFixed(ins->tls(), InstanceReg), + useRegister(opd), useFixed(ins->instance(), InstanceReg), LDefinition::BogusTemp()), ins); }