Bug 1108834 - Switch visitSubstr return type to void. r=h4writer

CLOSED TREE
This commit is contained in:
Steve Singer 2014-12-11 19:18:00 -05:00
parent 74e60fddd3
commit fca6c03fd3

View File

@ -89,7 +89,7 @@ class LIRGeneratorNone : public LIRGeneratorShared
void visitSimdTernaryBitwise(MSimdTernaryBitwise *ins) { MOZ_CRASH(); }
void visitSimdSplatX4(MSimdSplatX4 *ins) { MOZ_CRASH(); }
void visitSimdValueX4(MSimdValueX4 *lir) { MOZ_CRASH(); }
bool visitSubstr(MSubstr *) { MOZ_CRASH(); }
void visitSubstr(MSubstr *) { MOZ_CRASH(); }
};