Chromium Code Reviews| Index: src/arm/lithium-arm.cc |
| =================================================================== |
| --- src/arm/lithium-arm.cc (revision 6336) |
| +++ src/arm/lithium-arm.cc (working copy) |
| @@ -1075,7 +1075,7 @@ |
| LInstruction* LChunkBuilder::DoInstanceOfKnownGlobal( |
| HInstanceOfKnownGlobal* instr) { |
| LInstruction* result = |
| - new LInstanceOfKnownGlobal(UseFixed(instr->value(), r0)); |
| + new LInstanceOfKnownGlobal(UseFixed(instr->value(), r0), FixedTemp(r4)); |
| return MarkAsCall(DefineFixed(result, r0), instr); |
|
Søren Thygesen Gjesse
2011/01/17 13:18:07
Now that we have fast straight line code and slow
Alexandre
2011/01/17 18:06:41
Done.
|
| } |