| Index: src/arm/lithium-arm.cc
|
| ===================================================================
|
| --- src/arm/lithium-arm.cc (revision 11854)
|
| +++ src/arm/lithium-arm.cc (working copy)
|
| @@ -1669,6 +1669,9 @@
|
| LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) {
|
| LOperand* value = UseRegisterAtStart(instr->index());
|
| LOperand* length = UseRegister(instr->length());
|
| + if (instr->lower_offset() != 0 || instr->upper_offset() != 0) {
|
| + UNIMPLEMENTED();
|
| + }
|
| return AssignEnvironment(new(zone()) LBoundsCheck(value, length));
|
| }
|
|
|
|
|