| Index: src/crankshaft/s390/lithium-s390.cc
|
| diff --git a/src/crankshaft/s390/lithium-s390.cc b/src/crankshaft/s390/lithium-s390.cc
|
| index 3d1476403295ffe6d6c06d7f30e910cf81192aea..5395e8a5392ba8caaabc48b8dd2d71729c9d4e7b 100644
|
| --- a/src/crankshaft/s390/lithium-s390.cc
|
| +++ b/src/crankshaft/s390/lithium-s390.cc
|
| @@ -1697,7 +1697,7 @@ LInstruction* LChunkBuilder::DoChange(HChange* instr) {
|
| }
|
|
|
| LInstruction* LChunkBuilder::DoCheckHeapObject(HCheckHeapObject* instr) {
|
| - LOperand* value = UseRegisterAtStart(instr->value());
|
| + LOperand* value = UseAtStart(instr->value());
|
| LInstruction* result = new (zone()) LCheckNonSmi(value);
|
| if (!instr->value()->type().IsHeapObject()) {
|
| result = AssignEnvironment(result);
|
| @@ -1706,7 +1706,7 @@ LInstruction* LChunkBuilder::DoCheckHeapObject(HCheckHeapObject* instr) {
|
| }
|
|
|
| LInstruction* LChunkBuilder::DoCheckSmi(HCheckSmi* instr) {
|
| - LOperand* value = UseRegisterAtStart(instr->value());
|
| + LOperand* value = UseAtStart(instr->value());
|
| return AssignEnvironment(new (zone()) LCheckSmi(value));
|
| }
|
|
|
|
|