| Index: src/arm/lithium-arm.cc
|
| ===================================================================
|
| --- src/arm/lithium-arm.cc (revision 6094)
|
| +++ src/arm/lithium-arm.cc (working copy)
|
| @@ -1316,7 +1316,8 @@
|
|
|
| LInstruction* LChunkBuilder::DoInstanceOf(HInstanceOf* instr) {
|
| LInstruction* result =
|
| - new LInstanceOf(Use(instr->left()), Use(instr->right()));
|
| + new LInstanceOf(UseFixed(instr->left(), r1),
|
| + UseFixed(instr->right(), r0));
|
| return MarkAsCall(DefineFixed(result, r0), instr);
|
| }
|
|
|
| @@ -1375,6 +1376,12 @@
|
| case kMathLog:
|
| Abort("MathLog LUnaryMathOperation not implemented");
|
| return NULL;
|
| + case kMathCos:
|
| + Abort("MathCos LUnaryMathOperation not implemented");
|
| + return NULL;
|
| + case kMathSin:
|
| + Abort("MathSin LUnaryMathOperation not implemented");
|
| + return NULL;
|
| default:
|
| UNREACHABLE();
|
| return NULL;
|
|
|