Bug 1167815 - Switch toMoveOperand to pass by value. r=bhackett

This commit is contained in:
Steve Singer 2015-05-22 19:48:00 +02:00
parent 7014b2d61e
commit 6afdf2f707

View File

@ -24,7 +24,7 @@ class CodeGeneratorNone : public CodeGeneratorShared
}
template <typename T> inline Register ToOperand(T) { MOZ_CRASH(); }
MoveOperand toMoveOperand(const LAllocation*) const { MOZ_CRASH(); }
MoveOperand toMoveOperand(const LAllocation) const { MOZ_CRASH(); }
template <typename T1, typename T2>
void bailoutCmp32(Assembler::Condition, T1, T2, LSnapshot*) { MOZ_CRASH(); }
template<typename T>