From 6afdf2f7077b99c2438dd659e251f944a10660d5 Mon Sep 17 00:00:00 2001 From: Steve Singer Date: Fri, 22 May 2015 19:48:00 +0200 Subject: [PATCH] Bug 1167815 - Switch toMoveOperand to pass by value. r=bhackett --- js/src/jit/none/CodeGenerator-none.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jit/none/CodeGenerator-none.h b/js/src/jit/none/CodeGenerator-none.h index 52362266ffa..0e9892167a5 100644 --- a/js/src/jit/none/CodeGenerator-none.h +++ b/js/src/jit/none/CodeGenerator-none.h @@ -24,7 +24,7 @@ class CodeGeneratorNone : public CodeGeneratorShared } template inline Register ToOperand(T) { MOZ_CRASH(); } - MoveOperand toMoveOperand(const LAllocation*) const { MOZ_CRASH(); } + MoveOperand toMoveOperand(const LAllocation) const { MOZ_CRASH(); } template void bailoutCmp32(Assembler::Condition, T1, T2, LSnapshot*) { MOZ_CRASH(); } template