Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index fcf2862da41ba29aa5a0173942773125ae37d1f7..62dcaeb5dbd98b5cb91738744663138d8a33d9e3 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1647,8 +1647,8 @@ LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch( |
LInstruction* LChunkBuilder::DoCompareHoleAndBranch( |
HCompareHoleAndBranch* instr) { |
- LOperand* object = UseRegisterAtStart(instr->object()); |
- return new(zone()) LCmpHoleAndBranch(object); |
+ LOperand* value = UseRegisterAtStart(instr->value()); |
+ return new(zone()) LCmpHoleAndBranch(value); |
} |